@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=League+Spartan:wght@100..900&display=swap');

/* ============================================
   DARK THEME VARIABLES
   ============================================ */

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #222;
    --text-secondary: #465b52;
    --header-bg: rgba(255, 255, 255, 0.5);
    --card-bg: #ffffff;
    --border-color: #cce7d0;
    --shadow: rgba(0, 0, 0, 0.02);
    --shadow-hover: rgba(0, 0, 0, 0.25);
    --accent: #088178;
    --feature-bg-1: #fddde4;
    --feature-bg-2: #cdebbc;
    --feature-bg-3: #d1e8f2;
    --feature-bg-4: #cdd4f6;
    --feature-bg-5: #f6dbf6;
    --feature-bg-6: #fff2e5;
    --input-bg: #ffffff;
    --footer-text: #222;
    --cart-icon-bg: #e8f6ea;
    --logo-filter: none;
}

[data-theme="dark"] {
    --bg-primary: #0f1419;
    --bg-secondary: #1a1f26;
    --text-primary: #e6eef8;
    --text-secondary: #94a3b8;
    --header-bg: rgba(15, 20, 25, 0.85);
    --card-bg: #1a1f26;
    --border-color: #2d3748;
    --shadow: rgba(0, 0, 0, 0.4);
    --shadow-hover: rgba(124, 58, 237, 0.3);
    --accent: #06b6d4;
    --feature-bg-1: #7c3aed;
    --feature-bg-2: #10b981;
    --feature-bg-3: #3b82f6;
    --feature-bg-4: #8b5cf6;
    --feature-bg-5: #ec4899;
    --feature-bg-6: #f59e0b;
    --input-bg: #2d3748;
    --footer-text: #e6eef8;
    --cart-icon-bg: #2d3748;
    --logo-filter: brightness(0) invert(1);
}

/* [data-theme="dark"] #header img {
    filter: invert(1) brightness(2);
} */

/* ============================================
   BASE STYLES
   ============================================ */

* {
    font-family: "Outfit", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1 {
    font-size: 70px;
    line-height: 74px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

h2 {
    font-size: 56px;
    line-height: 60px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

h4 {
    font-size: 30px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

h6 {
    font-size: 20px;
    font-weight: 700;
}

p {
    font-size: 22px;
    margin: 12px 0 20px 0;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.section-p1 {
    padding: 40px 80px;
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.section-m1 {
    margin: 40px 0;
}

/* ============================================
   BUTTON STYLES & INTERACTIVE HOVER EFFECTS
   ============================================ */

button.normal {
    background-color: var(--card-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    min-width: 180px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    outline: none;

    /* Required for JavaScript ripple positioning */
    position: relative;
    overflow: hidden;

    /* Smooth transition handling */
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.2s ease;
    will-change: transform, box-shadow;
}

/* Hover State for Normal Buttons */
button.normal:hover {
    background-color: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 15px var(--shadow-hover);
}

/* Click/Active State for Normal Buttons */
button.normal:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 5px var(--shadow);
}

button.white {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    padding: 12px 24px;
    min-width: 180px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    outline: none;

    /* Required for JavaScript ripple positioning */
    position: relative;
    overflow: hidden;

    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.2s ease;
    will-change: transform, box-shadow;
}

/* Hover State for White/Inverted Buttons */
button.white:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 15px var(--shadow-hover);
}

/* Click/Active State for White/Inverted Buttons */
button.white:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 5px var(--shadow);
}

/* Keyboard Accessibility Focus Indicators */
button.normal:focus-visible,
button.white:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

/* ============================================
   JAVASCRIPT RIPPLE EFFECT GRAPHICS
   ============================================ */

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    /* Light ripple for colored backgrounds */
    transform: translate(-50%, -50%) scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
    width: 200px;
    height: 200px;
}

/* Darker ripple variant looks better inside light/transparent white buttons */
button.white .ripple-effect {
    background: rgba(0, 0, 0, 0.15);
}

@keyframes ripple-animation {
    to {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */

.theme-toggle {
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 18px;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: rotate(180deg);
}

.mobile .theme-toggle {
    margin-right: 10px;
}

/* ============================================
   LAYOUT
   ============================================ */

#main {
    width: 100%;
    height: 100vh;
}

#back {
    width: 100%;
    height: 90vh;
}

#back img {
    height: 90%;
    width: 100%;
    object-fit: cover;
    object-position: start;
}

#top {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90vh;
}

#workingArea {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 1920px;
    height: 100vh;
}

/* ============================================
   HEADER
   ============================================ */

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: var(--header-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: fixed;
    top: 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] #header {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#header a {
    pointer-events: all;
}

#header a img {
    filter: var(--logo-filter);
    transition: filter 0.3s ease;
}

#siteLogo {
    
    width: 120px;
    height: 50px;
    object-fit: contain;
}

#navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li {
    list-style: none;
    padding: 0 20px;
}

#navbar li a {
    position: relative;
    pointer-events: all;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.3s ease;
    padding: 10px 0;
}

#navbar li a:hover,
#navbar li a.active {
    color: var(--accent);
}

#navbar li a::after {
    content: '';
    width: 0;
    height: 2px;
    background: var(--accent);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

#navbar li a:hover::after,
#navbar li a.active::after {
    width: 100%;
}

.mobile,
#close {
    display: none;
}

/* ============================================
   HERO SECTION
   ============================================ */

#hero {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0) 100%), url("images/hero4.png");
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: top 25% right 0;
    padding: 0 80px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

[data-theme="dark"] #hero {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%), url("images/hero4.png");
}

#hero h4 {
    padding-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1.2rem;
    animation: fadeInUp 0.8s ease forwards;
}

#hero h2 {
    color: rgb(0, 0, 0);
    font-weight: 700;
    margin-bottom: 5px;
    animation: fadeInUp 0.8s ease forwards 0.2s;
    opacity: 0;
}

#hero h1 {
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease forwards 0.4s;
    opacity: 0;
}

#hero p {
    animation: fadeInUp 0.8s ease forwards 0.6s;
    opacity: 0;
}

#hero button {
    pointer-events: all;
    background: var(--accent);
    color: #fff !important;
    border: 0;
    padding: 16px 45px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    animation: fadeInUp 0.8s ease forwards 0.8s;
    opacity: 0;
}

#hero button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(6, 182, 212, 0.3);
    filter: brightness(1.1);
}

#hero button a {
    text-decoration: none;
    color: #fff !important;
}

#hero button:nth-of-type(2) {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent) !important;
    margin-left: 15px;
}

#hero button:nth-of-type(2):hover {
    background: var(--accent);
    color: #fff !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */

#feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

#feature .fe-box {
    width: 180px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 30px var(--shadow);
    border-radius: 4px;
    border: 1px solid var(--border-color);
    margin: 35px 0;
    margin-top: 100px;
    background-color: var(--card-bg);
    transition: all 0.3s ease;
}

#feature .fe-box:hover {
    box-shadow: 10px 10px 74px var(--shadow-hover);
}

#feature.fe-box img {
    width: 100%;
    margin-bottom: 10px;
}

#feature .fe-box h6 {
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    margin-top: 10px;
    border-radius: 4px;
    color: var(--accent);
    font-size: 16px;
}

[data-theme="dark"] #feature .fe-box h6 {
    color: #ffffff;
}

[data-theme="dark"] #feature .fe-box h6 {
    color: #ffffff;
}

#feature .fe-box:nth-child(1) h6 {
    background-color: var(--feature-bg-1);
}

#feature .fe-box:nth-child(2) h6 {
    background-color: var(--feature-bg-2);
}

#feature .fe-box:nth-child(3) h6 {
    background-color: var(--feature-bg-3);
}

#feature .fe-box:nth-child(4) h6 {
    background-color: var(--feature-bg-4);
}

#feature .fe-box:nth-child(5) h6 {
    background-color: var(--feature-bg-5);
}

#feature .fe-box:nth-child(6) h6 {
    background-color: var(--feature-bg-6);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

#product1 {
    text-align: center;
}

#product1 .pro-container {
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 20px;
    display: flex;
}

#product1 .pro {
    position: relative;
    width: 23%;
    min-width: 250px;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 10px 30px var(--shadow);
    margin: 15px 0;
    background-color: var(--card-bg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#product1 .pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-hover);
    border-color: var(--accent);
}

#product1 .pro img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

#product1 .pro:hover img {
    transform: scale(1.05);
}

#product1 .pro .des {
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .des span {
    color: var(--text-secondary);
    font-size: 14px;
}

#product1 .pro .des h5 {
    padding-top: 7px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 16px;
}

#product1 .pro .des i {
    color: rgba(243, 181, 25);
    font-size: 12px;
}

#product1 .pro .des h4 {
    padding-top: 7px;
    color: var(--accent);
    font-size: 15px;
    font-weight: 700;
}

#product1 .pro .cart {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    background-color: var(--cart-icon-bg);
    font-weight: 500;
    color: var(--accent);
    border: 1px solid var(--border-color);
    position: absolute;
    bottom: 18px;
    right: 10px;
    transition: all 0.3s ease;
}

/* ============================================
   BANNERS
   ============================================ */

#banner {
    background-image: url("images/banner/b2.jpg");
    min-height: 40vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-align: center;
    flex-direction: column;
    padding: 40px 20px;
}

#banner h4 {
    color: #ffffffde;
    font-size: 28px;
}

#banner span {
    color: red;
}

#banner h2 {
    color: #ffffffde;
    font-size: 45px;
    padding: 10px 0;
}

#banner button:hover {
    color: #FFF;
    background-color: var(--accent);
}

#sm-banner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

#sm-banner .banner-box {
    background-image: url("images/banner/b17.jpg");
    flex: 1 1 calc(50% - 20px);
    min-height: 320px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #FFF;
    padding: 50px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

/* Better banner content spacing */

#sm-banner .banner-box h4,
#sm-banner .banner-box h2,
#sm-banner .banner-box span,
#sm-banner .banner-box button {
    position: relative;
    z-index: 2;
}

#sm-banner .banner-box h2 {
    max-width: 70%;
    line-height: 1.2;
}

#sm-banner .banner-box span {
    max-width: 75%;
    line-height: 1.5;
}

#sm-banner .banner-box2 {
    background-image: url("images/banner/b10.jpg");
}

#sm-banner h4 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 300;
}

#sm-banner h2 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
}

#sm-banner span {
    color: #ffffff;
    font-size: 23px;
    font-weight: 500;
    padding-bottom: 15px;
}

#sm-banner .banner-box:hover button {
    color: #000;
    background-color: #1ea59c;
}

#banner3 {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 80px;
}

#banner3 .banner-box {
    background-image: url("images/banner/b7.jpg");
    flex: 1 1 calc(33.33% - 20px);
    min-height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

#banner3 h2 {
    max-width: 80%;
    line-height: 1.3;
}

#banner3 h3 {
    line-height: 1.4;
}

#banner3 .banner-box2 {
    background-image: url("images/banner/b4.jpg");
}

#banner3 .banner-box3 {
    background-image: url("images/banner/b18.jpg");
}

#banner3 h2 {
    color: #FFF;
    font-weight: 900;
    font-size: 30px;
}

#banner3 h3 {
    color: #ec544e;
    font-weight: 700;
    font-size: 22px;
}

/* ============================================
   NEWSLETTER
   ============================================ */

#newsletter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-image: url("images/banner/b14.png");
    background-size: cover;
    background-position: 20% 30%;
    background-repeat: no-repeat;
    background-color: #041e42;
}

#newsletter h4 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffffea;
}

#newsletter p {
    font-size: 20px;
    font-weight: 600;
    color: #818ea0;
}

#newsletter p span {
    color: #ffbd27;
}

#newsletter .form {
    display: flex;
    width: 40%;
}

#newsletter .form input {
    height: 3.125rem;
    padding: 1.25rem;
    font-size: 16px;
    width: 100%;
    border: 1px solid transparent;
    outline: none;
    border-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background-color: var(--input-bg);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

#newsletter .form button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background-color: var(--accent);
    color: #fff;
    white-space: nowrap;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: var(--bg-secondary);
    transition: background-color 0.3s ease;
}

footer .col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

footer .logo {
    margin-bottom: 30px;
    filter: var(--logo-filter);
    transition: filter 0.3s ease;
}

footer h4 {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--footer-text);
}

footer p {
    margin: 0 0 8px 0;
    font-size: 20px;
    color: var(--footer-text);
}

footer a {
    font-size: 18px;
    text-decoration: none;
    color: var(--footer-text);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

footer .follow {
    margin-top: 20px;
}

footer .follow i {
    color: var(--text-secondary);
    padding-right: 4px;
    cursor: pointer;
    transition: color 0.3s ease;
}

footer .install .row img {
    border: 1px solid var(--accent);
    border-radius: 6px;
}

footer .install img {
    margin: 10px 0 15px 0;
}

footer .follow i:hover,
footer a:hover {
    color: var(--accent);
}

footer .copyright {
    text-align: center;
    width: 100%;
}

/* ============================================
   SHOP PAGE
   ============================================ */

#shop-hero {
    background-image: url("images/banner/b1.jpg");
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 14px;
}

#shop-hero h2,
#shop-hero p {
    color: #fff;
    text-align: center;
}

#pagination {
    text-align: center;
}

#pagination a {
    text-decoration: none;
    background-color: var(--accent);
    padding: 15px 20px;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
}



/* ============================================
   SINGLE PRODUCT
   ============================================ */

#pro-details {
    margin-top: 80px;
    pointer-events: all;
    display: flex;
}

#pro-details .single-pro-image {
    pointer-events: all;
    width: 40%;
    margin-right: 50px;
}

.small-img-group {
    pointer-events: all;
    display: flex;
    justify-content: space-between;
}

.small-img-col {
    flex-basis: 24%;
    cursor: pointer;
}

#pro-details .single-pro-details {
    width: 50%;
    padding-top: 30px;
}

#pro-details .single-pro-details h4 {
    padding: 40px 0 20px 0;
}

#pro-details .single-pro-details h2 {
    font-size: 26px;
}

#pro-details .single-pro-details select {
    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;
}

#pro-details .single-pro-details input {
    width: 50px;
    height: 47px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
}

#pro-details .single-pro-details input:focus {
    outline: none;
}

#pro-details .single-pro-details button {
    color: #fff;
    background: var(--accent);
}

/* ============================================
   BLOG PAGE
   ============================================ */

#blog-head {
    background-image: url("images/banner/b19.jpg");
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 14px;
}

#blog-head h2,
#blog-head p {
    color: #fff;
    text-align: center;
}

#blog {
    padding: 150px 150px 0 150px;
}

#blog .blog-box {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding-bottom: 90px;
}

#blog .blog-box h1 {
    position: absolute;
    top: -70px;
    left: 0;
    z-index: -9;
    font-size: 70px;
    font-weight: 700;
    color: #c9cbce;
}

#blog .blog-img {
    width: 50%;
    margin-right: 50px;
}

#blog img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

#blog .blog-details {
    width: 50%;
}

#blog .blog-details a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 11px;
    position: relative;
    font-weight: 700;
    transition: 0.3s;
}

#blog .blog-details a::after {
    content: "";
    width: 50%;
    height: 1px;
    background-color: var(--text-primary);
    position: absolute;
    top: -4%;
    right: -60%;
}

#blog .blog-details a:hover {
    color: var(--accent);
}

#blog .blog-details a:hover::after {
    background-color: var(--accent);
}

/* ============================================
   ABOUT US
   ============================================ */

#page-header,
#about-head,
#blog-head {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 120px 20px 60px 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-secondary);
}

#page-header h2,
#page-header p,
#about-head h2,
#about-head p,
#blog-head h2,
#blog-head p {
    color: var(--text-primary);
}

marquee {
    background-color: var(--card-bg);
    color: var(--text-primary);
    padding: 12px 0;
    font-weight: 500;
    border-radius: 10px;
    margin-top: 15px;
}

#about-head {
    background-image: url("images/about/banner.png");
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 14px;
}

#about-head h2,
#about-head p {
    color: #fff;
    text-align: center;
}

#about-us {
    display: flex;
    align-items: center;
}

#about-us img {
    width: 50%;
    height: auto;
}

#about-us div {
    width: 50%;
    padding: 40px;
}

#about-app {
    text-align: center;
}

#about-app .video {
    width: 70%;
    height: 100%;
    margin: 30px auto 0 auto;
}

#about-app .video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    border-radius: 20px;
}

/* ============================================
   CONTACT US
   ============================================ */

#contact-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#contact-details .details {
    width: 40%;
}

#contact-details .details span,
#form-details form span {
    font-size: 20px;
}

#contact-details .details h2,
#form-details form h2 {
    font-size: 30px;
    line-height: 30px;
    padding: 20px 0;
}

#contact-details .details h3 {
    font-size: 22px;
    padding-bottom: 15px;
    font-weight: 500;
}

#contact-details .details li {
    display: flex;
    list-style: none;
    padding: 10px 0;
}

#contact-details .details li i {
    font-size: 18px;
    padding-right: 22px;
}

#contact-details .details li p {
    margin: 0;
    font-size: 20px;
}

#contact-details .map {
    width: 55%;
    height: 400px;
}

#contact-details .map iframe {
    width: 100%;
    height: 100%;
}

#form-details {
    display: flex;
    justify-content: space-between;
    padding: 80px;
    margin: 30px;
    border: 1px solid #ccc;
}

#form-details form {
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#form-details form input,
#form-details form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 25px;
    font-size: 16px;
    border: 1px solid #e1e1e1;
    outline: none;
}

#form-details form button {
    background-color: var(--accent);
    color: #fff;
}

#form-details .social-media div {
    padding-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

#form-details .social-media div img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    margin-right: 15px;
}

#form-details .social-media div p {
    margin: 0;
    font-size: 18px;
    line-height: 25px;
}

#form-details .social-media div p span {
    display: block;
    color: var(--text-primary);
}

/* ============================================
   CART PAGE
   ============================================ */
.cartmain {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100px;
}

#page-header {
    margin-left: 100px;
}

.seperator {
    height: 1px;
    background-color: #bfbfbf;
}

#cart {
    overflow-x: auto;
}

#cart table {
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
    table-layout: fixed;
}

#cart table img {
    width: 150px;
}

#cart table td:nth-child(1) {
    width: 100px;
    text-align: center;
}

#cart table td:nth-child(2) {
    width: 150px;
    text-align: center;
}

#cart table td:nth-child(3) {
    width: 250px;
    text-align: center;
}

#cart table td:nth-child(4),
#cart table td:nth-child(5),
#cart table td:nth-child(6) {
    width: 150px;
    text-align: center;
}

#cart table td:nth-child(5) input {
    width: 70px;
    padding: 10px;
     display: block;
    margin: 0 auto;
    text-align: center;
}

#cart table td:nth-child(5) input:focus {
    outline: none;
}

#cart table thead {
    border: 1px solid #e2e9e1;
    border-left: none;
    border-right: none;
}

#cart table thead td {
    padding: 18px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
}

#cart table thead td a i {
    color: var(--text-primary);
}

#cart table tbody tr td {
    padding: 15px;
    border-bottom: 1px solid #e2e9e1;
}

#cart table tbody td {
    font-size: 20px;
}

#cart-add {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#cart-add .coupon {
    width: 50%;
    margin-bottom: 30px;
}

#cart-add .coupon h3,
.subtotal h3 {
    font-size: 28px;
    padding-bottom: 15px;
}

#cart-add .coupon input {
    padding: 18px 20px;
    outline: none;
    border-radius: 4px;
    width: 60%;
    margin-right: 10px;
    border: 1px solid #e2e9e1;
}

#cart-add .coupon button {
    background-color: var(--accent);
    color: #fff;
    cursor: pointer;
}

.subtotal {
    width: 50%;
    margin-bottom: 30px;
    border: 1px solid #c9cbce;
    padding: 30px;
}

.subtotal table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.subtotal table td {
    width: 50%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #c9cbce;
}

.subtotal button {
    background-color: var(--accent);
    color: #fff;
    cursor: pointer;
}

.normals {
    margin: 10px;
    text-decoration: none;
    font-size: 17px;
}


/* Continue Shopping Button -{csritik-max}*/
a.normal {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.4px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

a.normal:hover {
    background-color: #1d4ed8;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    transform: translateY(-1px);
}

a.normal:active {
    transform: translateY(0px);
    box-shadow: none;
}

/* csritik-max */

button.normal {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2563eb;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 0.4px;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

button.normal:hover {
    background-color: #1d4ed8;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    transform: translateY(-1px);
}

.normal:active {
    transform: translateY(0);
    box-shadow: none;
}

.toast {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1e293b;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}


/* ============================================
   LOGIN 
   ============================================ */
/* login page */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f3f4f6;
    margin: 10;
}

/* Message Box */
#signUpMessage {
    position: fixed;
    top: 2rem;
    left: 50%;
    padding: 0.75rem;
    font-size: 0.875rem;
    text-align: center;
    color: #ffffff;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: opacity 0.5s ease-in-out;
    background-color: #ef4444;
    min-width: 300px;
    display: none;
}

/* Form Container */
.auth-container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 28rem;
}

/* Form Title */
.auth-container h2 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* OR Divider */
.divider {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
}

.divider::before,
.divider::after {
    content: '';
    flex-grow: 1;
    border-top: 1px solid #d1d5db;
}

.divider span {
    flex-shrink: 0;
    margin-left: 1rem;
    margin-right: 1rem;
    color: #6b7280;
}

/* Form Labels */
label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.4rem;
}

/* Form Inputs */
input {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    color: #111827;
    font-size: 0.875rem;
}

input::placeholder {
    color: #9ca3af;
}

input:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    border-color: var(--accent);
    ;
    box-shadow: 0 0 0 1px var(--accent), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Input Grouping */
#register-fields>div {
    margin-bottom: 1rem;
}

/* Forgot Password Link */
#forgot-password-link {
    font-size: 0.875rem;
    margin-top: 1rem;
    /* mt-4 */
    text-align: right;
}

#forgot-password-link a {
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
}

#forgot-password-link a:hover {
    color: #088179ec;
    ;
}

/* Submit Button */
.submit-button-container {
    margin-top: 1.5rem;
}

#submitButton {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    background-color: var(--accent);
    ;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
}

#submitButton:hover {
    background-color: var(--accent);
    ;
}

#submitButton:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--accent);
    ;
}

/* Toggle Auth Link */
.toggle-auth-footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
}

.toggle-auth-footer a {
    font-weight: 500;
    color: var(--accent);
    ;
    text-decoration: none;
}

.toggle-auth-footer a:hover {
    color: var(--accent);
    ;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width:799px) {
    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: var(--card-bg);
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 10px;
        transition: 0.3s linear;
    }

    #navbar.active {
        right: 0;
    }

    #navbar li {
        margin-bottom: 30px;
    }

    .mobile {
        pointer-events: all;
        display: flex;
        align-items: center;
    }

    .mobile i {
        pointer-events: all;
        color: var(--text-primary);
        font-size: 24px;
        padding-left: 20px;
    }

    #lg-bag {
        display: none;
    }

    #navbar #close {
        pointer-events: all;
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 24px;
        color: var(--text-primary);
        cursor: pointer;
    }

    #back {
        height: 100%;
    }

    #back img {
        height: 100%;
        object-position: top 30% right 30%;
    }

    #hero {
        background-position: top 30% right 30%;
        padding: 0 80px;
    }

    #feature .fe-box {
        margin: 20px 0;
        margin-top: 0px;
    }

    #product1 .pro-container {
        justify-content: center;
        gap: 50px;
    }

    #banner {
        height: 25vh;
    }

    #sm-banner .banner-box {
        min-width: 100%;
        margin: 10px;
    }

    #banner3 {
        justify-content: space-around;
        flex-wrap: wrap;
        padding: 0 20px;
    }

    #banner3 .banner-box {
        width: 100%;
        margin: 10px 0;
    }

    #banner3 .banner-box2 {
        width: 100%;
    }

    #banner3 .banner-box3 {
        width: 100%;
    }

    #newsletter {
        height: 40vh;
        background-position: 20% 40%;
    }

    #newsletter .form {
        width: 70%;
    }

    footer h4 {
        font-size: 15px;
    }

    footer p {
        font-size: 15px;
    }

    footer a {
        font-size: 15px;
    }

    #pro-details {
        margin-top: 80px;
        pointer-events: all;
        flex-direction: column;
        display: flex;
    }

    #pro-details .single-pro-image {
        pointer-events: all;
        width: 100%;
        margin-right: 0px;
    }

    #pro-details .single-pro-details {
        width: 100%;
        padding-top: 30px;
    }

    #blog {
        padding: 80px;
    }

    #blog .blog-box {
        flex-direction: column;
    }

    #blog .blog-img {
        width: 100%;
        margin-right: 0px;
    }

    #blog img {
        width: 100%;
        height: 400px;
        object-position: center;
    }

    #blog .blog-details {
        margin-top: 30px;
        width: 100%;
    }

    #blog .blog-box h1 {
        top: 0;
    }

    #about-us {
        flex-direction: column;
    }

    #about-us img {
        width: 100%;
    }

    #about-us div {
        width: 100%;
        padding: 20px;
    }

    #about-app .video {
        width: 80%;
        height: 100vh;
    }

    #contact-details {
        flex-direction: column;
    }

    #contact-details .details {
        width: 100%;
    }

    #contact-details .map {
        width: 100%;
        height: 500px;
        margin-top: 50px;
    }

    #form-details {
        flex-direction: column;
        padding: 40px;
    }

    #form-details form {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #form-details form button {
        background-color: var(--accent);
        color: #fff;
    }

    #form-details .social-media div {
        padding-bottom: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #cart-add {
        flex-direction: column;
    }

    #cart-add .coupon {
        width: 100%;
    }

    #cart-add .coupon input {
        width: 100%;
        margin-bottom: 10px;
    }

    .subtotal {
        width: 100%;
    }
}

@media (max-width:477px) {
    #header {
        padding: 10px 30px;
    }

    h1 {
        font-size: 38px;
        line-height: 40px;
    }

    h2 {
        font-size: 32px;
        line-height: 40px;
    }

    h4 {
        font-size: 24px;
    }

    #hero p {
        font-size: 18px;
    }

    .section-p1 {
        padding: 20px;
    }

    #hero {
        background-position: 55%;
        padding: 0 20px;
    }

    #feature .fe-box {
        padding: 25px 0;
        width: 160px;
        margin: 0 0 15px 0;
    }

    #product1 .pro {
        width: 100%;
        margin: 0;
    }

    #banner {
        height: 40vh;
    }

    #sm-banner .banner-box {
        min-height: 260px;
        height: auto;
        width: 100%;
        margin: 10px 0;
        padding: 24px;
        background-size: cover;
        background-position: center;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        overflow: hidden;
        border-radius: 16px;
    }

    #sm-banner h4 {
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    #sm-banner h2 {
        font-size: 34px;
        line-height: 1.1;
        max-width: 90%;
        margin-bottom: 10px;
    }

    #sm-banner span {
        font-size: 18px;
        line-height: 1.4;
        max-width: 90%;
        display: block;
        margin-bottom: 16px;
    }

    #sm-banner button {
        padding: 10px 18px;
        font-size: 14px;
    }

    #banner3 .banner-box {
        flex: 1 1 100%;
        width: 100%;
        min-height: 220px;
        margin: 12px 0;
        padding: 24px;
        background-position: center;
        background-size: cover;
        border-radius: 16px;
        overflow: hidden;
    }

    #banner3 {
        flex-direction: column;
        gap: 16px;
    }

    #banner3 h2 {
        font-size: 28px;
        line-height: 1.2;
        max-width: 90%;
    }

    #banner3 h3 {
        font-size: 18px;
        line-height: 1.3;
        max-width: 90%;
    }

    #banner3 .banner-box2 {
        width: 100%;
    }

    #banner3 .banner-box3 {
        width: 100%;
    }

    #newsletter .form {
        width: 100%;
    }

    #blog {
        padding: 80px 40px;
    }

    #blog .blog-box h1 {
        top: 0;
    }

    #about-us img {
        height: 60vh;
    }
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -100;
}

#pagination {
    text-align: center;
    padding: 40px 0;
    margin-top: 20px;
}

#pagination a {
    text-decoration: none;
    background-color: var(--accent);
    padding: 15px 20px;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
    margin: 0 5px;
    display: inline-block;
    transition: all 0.3s ease;
    min-width: 50px;
    text-align: center;
}

#pagination a:hover:not(.disabled) {
    background-color: #066e66;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(8, 129, 120, 0.3);
}

#pagination a.active {
    background-color: #066e66;
    box-shadow: 0 4px 12px rgba(8, 129, 120, 0.4);
    transform: scale(1.1);
}

#pagination a.disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
    pointer-events: none;
}

#pagination a.pagination-arrow {
    padding: 15px 18px;
    font-size: 18px;
}

#pagination a.pagination-arrow i {
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="dark"] #pagination a {
    background-color: #06b6d4;
}

[data-theme="dark"] #pagination a:hover:not(.disabled) {
    background-color: #0891b2;
}

[data-theme="dark"] #pagination a.active {
    background-color: #0891b2;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

[data-theme="dark"] #pagination a.disabled {
    background-color: #2d3748;
}

/* Quiz Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--bg-primary);
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.quiz-options button {
    padding: 10px;
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.quiz-options button:hover {
    background-color: #066a5c;
}



/* Back to Top Button Styles */

#backToTop {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 2000;
    background: linear-gradient(135deg,
            var(--candy-red),
            var(--sky-blue),
            var(--sunny-yellow));
    color: #c97171;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s, transform 0.2s;
}

#backToTop.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-10px) scale(1.08);
}

#backToTop:hover {
    transform: scale(1.15);
}