@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spartan', sans-serif;
}

h1 {
    font-size: 50px;
    color: #222;
    line-height: 64px;
}

h2 {
    font-size: 48px;
    color: #222;
    line-height: 54px;
}

h4 {
    font-size: 20px;
    color: #222;
}

h6 {
    font-size: 12px;
    font-weight: 700;
}

p {
    font-size: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px;
}

.section-m1 {
    margin: 40px 0;
}

button.normal {
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    color: #000;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}

button.white {
    font-size: 13px;
    font-weight: 600;
    padding: 11px 18px;
    color: #0BA6DF;
    background-color: transparent;
    cursor: pointer;
    border: 1px solid #0BA6DF;
    outline: none;
    transition: 0.2s;
}

body {
    width: 100%;
}
/* header start */
#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    /* reduced from 20px 80px */
    background: #E3e6f3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}

.cart-icon {
    position: relative;
}

.cart-icon a {
    text-decoration: none;
    color: #333;
    font-size: 24px;
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#header img.logo {
    max-height: 70px;
    height: auto;
    display: block;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li {
    list-style: none;
    margin: 0 20px;
    position: relative;
}

#navbar li a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: #4cb9f8;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: '';
    width: 30%;
    height: 2px;
    background: #37a5ee;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

#mobile {
    display: none;
    align-items: center;
}

#close {
    display: none;
}

/*home page*/

#hero {
    height: 85vh;
    min-height: 600px;
    width: 100%;
    padding: 0 5%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0c2c3d 0%, #1a4a5f 25%, #2a6b7f 50%, #3a8c9f 75%, #4aadbf 100%);
}

/* Animated gradient overlay */
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(8, 129, 120, 0.1) 0%, transparent 60%);
    animation: breathe 6s ease-in-out infinite;
    transform: translateZ(0);
    z-index: 1;
}

@keyframes breathe {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

/* Subtle texture pattern */

#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 1px, transparent 1px), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 2;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    color: #ffdd40;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ffdd40, transparent);
}

.hero-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: #ffdd40;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 221, 64, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.hero-headline {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-headline .price-text {
    background: linear-gradient(45deg, #ef3636, #ff6b6b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2.8rem;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(239, 54, 54, 0.4);
    animation: priceGlow 2s ease-in-out infinite alternate;
}

@keyframes priceGlow {
    from {
        text-shadow: 0 4px 15px rgba(239, 54, 54, 0.4);
    }
    to {
        text-shadow: 0 4px 25px rgba(239, 54, 54, 0.7), 0 0 30px rgba(239, 54, 54, 0.3);
    }
}

.hero-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 600px;
    padding-left: 20px;
    border-left: 3px solid #088178;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 20px;
    border-radius: 0 10px 10px 0;
}

.hero-btn {
    background: linear-gradient(135deg, #088178 0%, #0aa492 100%);
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(8, 129, 120, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(8, 129, 120, 0.6), 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.hero-btn:hover::before {
    left: 100%;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.hero-btn:hover .btn-icon {
    transform: translateX(10px);
}

/* Floating decorative elements */

.floating-element {
    position: absolute;
    z-index: 2;
    opacity: 0.1;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    font-size: 3rem;
    animation: float 15s infinite ease-in-out;
}

.floating-element:nth-child(2) {
    bottom: 30%;
    right: 15%;
    font-size: 2.5rem;
    animation: float 18s infinite ease-in-out reverse;
}

.floating-element:nth-child(3) {
    top: 40%;
    right: 20%;
    font-size: 4rem;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

/* ===== NEON LOGO - RESPONSIVE VERSION ===== */

.neon-logo {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    text-align: center;
    padding: 30px 40px;
    background: rgba(0, 30, 44, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(8, 129, 120, 0.3);
    transition: all 0.5s ease;
    cursor: pointer;
    /* Fix for rectangle outline */
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Logo text styling - DESKTOP */

.neon-text {
    font-size: 4rem;
    /* Large on desktop */
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 10px #4dc8ff, 0 0 20px #4dc8ff, 0 0 30px #4dc8ff, 0 0 40px #00b7ff, 0 0 70px #00b7ff, 0 0 80px #00b7ff;
    animation: neonPulse 2s infinite alternate;
    letter-spacing: 5px;
    transition: all 0.5s ease;
    cursor: pointer;
    /* Prevent text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Subtitle - DESKTOP */

.neon-subtitle {
    color: #4dc8ff;
    font-size: 1.2rem;
    /* Larger on desktop */
    margin-top: 10px;
    letter-spacing: 2px;
    opacity: 0.9;
    transition: all 0.5s ease;
}

/* ===== TABLET (768px to 1024px) ===== */

@media (max-width: 1024px) {
    .neon-logo {
        right: 3%;
        padding: 20px 25px;
        /* Smaller padding */
    }
    .neon-text {
        font-size: 2.8rem;
        /* Smaller text */
        letter-spacing: 4px;
    }
    .neon-subtitle {
        font-size: 1rem;
        /* Smaller subtitle */
    }
}


/* ===== SMALL TABLETS & LARGE PHONES (600px to 768px) ===== */

@media (max-width: 768px) {
    .neon-logo {
        right: 2%;
        padding: 15px 20px;
        /* Even smaller padding */
    }
    .neon-text {
        font-size: 2.2rem;
        /* Much smaller */
        letter-spacing: 3px;
        text-shadow: 0 0 8px #4dc8ff, 0 0 15px #4dc8ff, 0 0 25px #4dc8ff, 0 0 35px #00b7ff;
    }
    .neon-subtitle {
        font-size: 0.85rem;
        /* Smaller subtitle */
        letter-spacing: 1px;
        margin-top: 8px;
    }
    /* Reduce glow intensity on hover for mobile */
    .neon-logo:hover .neon-text {
        text-shadow: 0 0 8px #ff8c00, 0 0 15px #ff8c00, 0 0 25px #ff8c00, 0 0 35px #ffa500;
    }
}


/* ===== MOBILE PHONES (480px to 600px) ===== */

@media (max-width: 600px) {
    .neon-logo {
        padding: 12px 18px;
        /* Compact padding */
        border-radius: 15px;
        /* Smaller radius */
        right: 50%;
        transform: translateX(50%) translateY(-50%);
        width: 80%;
        max-width: 250px;
    }
    .neon-text {
        font-size: 1.8rem;
        /* Much smaller for mobile */
        letter-spacing: 2px;
        text-shadow: 0 0 6px #4dc8ff, 0 0 12px #4dc8ff, 0 0 20px #4dc8ff, 0 0 30px #00b7ff;
    }
    .neon-subtitle {
        font-size: 0.75rem;
        /* Very small subtitle */
        letter-spacing: 0.5px;
        margin-top: 6px;
    }
    /* Hide optional outer glow on mobile for performance */
    .neon-logo::before {
        display: none;
    }
}


/* ===== SMALL PHONES (Under 480px) ===== */

@media (max-width: 480px) {
    .neon-logo {
        display: none;
        padding: 10px 15px;
        max-width: 220px;
        width: 75%;
    }
    .neon-text {
        font-size: 1.5rem;
        /* Even smaller */
        letter-spacing: 1px;
        text-shadow: 0 0 5px #4dc8ff, 0 0 10px #4dc8ff, 0 0 18px #4dc8ff, 0 0 25px #00b7ff;
    }
    .neon-subtitle {
        font-size: 0.65rem;
        /* Tiny but readable */
        margin-top: 4px;
    }
    /* Reduce animation intensity for mobile performance */
    .neon-text {
        animation: neonPulseMobile 3s infinite alternate;
    }
    @keyframes neonPulseMobile {
        from {
            text-shadow: 0 0 5px #4dc8ff, 0 0 10px #4dc8ff, 0 0 18px #4dc8ff, 0 0 25px #00b7ff;
        }
        to {
            text-shadow: 0 0 7px #4dc8ff, 0 0 13px #4dc8ff, 0 0 22px #4dc8ff, 0 0 30px #00b7ff;
        }
    }
}


/* ===== VERY SMALL PHONES (Under 360px) ===== */

@media (max-width: 360px) {
    .neon-logo {
        padding: 8px 12px;
        max-width: 200px;
        width: 70%;
    }
    .neon-text {
        font-size: 1.3rem;
        /* Minimum readable size */
        letter-spacing: 0.5px;
        text-shadow: 0 0 4px #4dc8ff, 0 0 8px #4dc8ff, 0 0 15px #4dc8ff, 0 0 22px #00b7ff;
    }
    .neon-subtitle {
        font-size: 0.6rem;
    }
}


/* ===== LANDSCAPE MODE (For all mobile sizes) ===== */

@media (max-height: 600px) and (orientation: landscape) {
    .neon-logo {
        padding: 10px 15px;
        max-width: 180px;
        top: 40%;
    }
    .neon-text {
        font-size: 1.4rem;
    }
    .neon-subtitle {
        font-size: 0.6rem;
        margin-top: 2px;
    }
}


/* ===== OPTIONAL: Add touch-friendly hover alternative ===== */

@media (hover: none) and (pointer: coarse) {
    /* For touch devices without hover capability */
    .neon-logo:active {
        border-color: rgba(255, 140, 0, 0.5);
        box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
    }
    .neon-logo:active .neon-text {
        text-shadow: 0 0 8px #ff8c00, 0 0 15px #ff8c00, 0 0 25px #ff8c00, 0 0 35px #ffa500;
        color: #fff8e1;
    }
    .neon-logo:active .neon-subtitle {
        color: #ffb347;
        opacity: 1;
    }
}


/* Keep all your existing animations and hover effects below */


/* (They remain the same, just smaller on mobile) */

#feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    min-height: 250px;
    /* Prevent layout shift during animation */
}

#feature .fe-box {
    width: 185px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
    border: 1px solid #cce7d0;
    border-radius: 4px;
    margin: 15px 0;
    position: relative;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

#feature .fe-box:hover {
    box-shadow: 10px 10px 54px rgba(3, 0, 58, 0.1);
    transform: translateY(-5px);
}

#feature .fe-box img {
    width: 100px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

#feature .fe-box:hover img {
    transform: scale(1.1);
}

#feature .fe-box h6 {
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    background-color: #fddde4;
    transition: background-color 0.5s ease;
}


/* NEW: Smooth Fade Animation Instead of Complex Movement */

#feature.rotating .fe-box {
    animation: smoothFade 0.8s ease forwards;
}


/* Stagger the animations for a wave effect */

#feature.rotating .fe-box:nth-child(1) {
    animation-delay: 0s;
}

#feature.rotating .fe-box:nth-child(2) {
    animation-delay: 0.1s;
}

#feature.rotating .fe-box:nth-child(3) {
    animation-delay: 0.2s;
}

#feature.rotating .fe-box:nth-child(4) {
    animation-delay: 0.3s;
}

#feature.rotating .fe-box:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes smoothFade {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    30% {
        opacity: 0.5;
        transform: translateY(-10px) scale(0.95);
    }
    70% {
        opacity: 0.5;
        transform: translateY(-10px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* Alternative: Simple Slide Animation (Cleaner) */

@keyframes simpleSlide {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    30% {
        transform: translateX(10px);
        opacity: 0.8;
    }
    70% {
        transform: translateX(10px);
        opacity: 0.8;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


/* Use this if you want sliding effect */

#feature.sliding .fe-box {
    animation: simpleSlide 0.8s ease forwards;
}


/*prod*/

#product1 {
    text-align: center;
}

#product1 .pro-container {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    flex-wrap: wrap;
}

#product1 .pro {
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
}

#product1 .pro:hover {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

#product1 .pro img {
    width: 100%;
    border-radius: 20px;
}

#product1 .pro .des {
    text-align: start;
    padding: 10px 0;
}

#product1 .pro .des span {
    color: #606063;
    font-size: 12px;
}

#product1 .pro .des h5 {
    padding: 7px;
    color: #1a1a1a;
    font-size: 14px;
}

#product1 .pro .des i,
#prodetails .product-info .star i {
    font-size: 12px;
    color: rgb(243, 181, 25);
}

#product1 .pro .des h4 {
    padding-top: 7px;
    color: #088178;
    font-size: 15px;
    font-weight: 700;
}

#product1 .pro .cart {
    background-color: #e8f6ea;
    color: #088178;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    border: 1px solid #cce7d0;
    font-weight: 700;
    position: absolute;
    bottom: 20px;
    right: 10px;
}

#banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("../images/banner/collabB.png");
    width: 100%;
    height: 45vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Creates parallax effect */
    position: relative;
    overflow: hidden;
}


/* Add an overlay for better text readability */

#banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 30, 44, 0.7) 0%, rgba(239, 54, 54, 0.5) 100%);
    z-index: 1;
}

#banner h4,
#banner h2,
#banner button {
    position: relative;
    z-index: 2;
    /* Bring text above overlay */
}

#banner h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

#banner h2 {
    color: #fff;
    font-size: 2.5rem;
    padding: 10px 20px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

#banner h2 span {
    color: #ffdd40;
    /* Brighter yellow instead of red */
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

#banner button {
    background: #fff;
    color: #001e2c;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#banner button:hover {
    background: #ef3636;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(239, 54, 54, 0.4);
}


/* For very small devices (360px and below) */

@media (max-width: 360px) {
    #banner {
        height: 30vh;
        min-height: 220px;
    }
    #banner h2 {
        font-size: 1.1rem;
    }
    #banner h2 span {
        font-size: 1.2rem;
    }
}

/* For landscape mode on mobile */

@media (max-height: 500px) and (orientation: landscape) {
    #banner {
        height: 60vh;
        /* Taller for landscape */
        min-height: 250px;
    }
    #banner h2 {
        font-size: 1.3rem;
    }
    #banner h2 span {
        font-size: 1.5rem;
    }
}

#sm-banner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#sm-banner .banner-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url("../images/banner/books.PNG");
    min-width: 580px;
    height: 50vh;
    background-size: cover;
    background-position: center;
    padding: 30px;
}

#sm-banner .banner-box2 {
    background-image: url("../images/banner/kid.jpg");
}

#sm-banner h4 {
    color: #000;
    font-size: 20px;
    font-weight: 300;
}

#sm-banner h2 {
    color: #EF7722;
    font-size: 28px;
    font-weight: 800px;
}

#sm-banner span {
    font-size: 14px;
    color: #811212;
    font-weight: 500;
    padding-bottom: 15px;
}

#sm-banner .banner-box:hover button {
    background: #EF7722;
    border: 1px solid #EF7722;
}

#sm-banner .banner-box2 h4 {
    color: #fff;
}

#sm-banner .banner-box2 span {
    color: #72e7fc;
}

#sm-banner .banner-box2 h2 {
    color: #FAA533;
}


/* Offer Popup Styles */

.offer-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.popup-content {
    background: white;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-popup {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #888;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-popup:hover {
    background: #f0f0f0;
    color: #333;
}

.popup-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.popup-header h2 {
    color: #EF7722;
    font-size: 24px;
    margin-bottom: 10px;
}

.offer-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.offer-description small {
    color: #888;
    font-size: 14px;
}

.books-selection {
    margin: 25px 0;
}

.books-selection h3 {
    color: #088178;
    margin-bottom: 20px;
    text-align: center;
    font-size: 20px;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.book-option {
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.book-option:hover {
    border-color: #088178;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.book-option.selected {
    border-color: #EF7722;
    background: #fff9f5;
}

.book-checkbox {
    margin-top: 5px;
}

.book-checkbox input[type="checkbox"] {
    display: none;
}

.book-checkbox label {
    display: block;
    width: 25px;
    height: 25px;
    border: 2px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.book-checkbox input[type="checkbox"]:checked+label {
    background-color: #EF7722;
    border-color: #EF7722;
}

.book-checkbox input[type="checkbox"]:checked+label::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 16px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.book-info h4 {
    color: #333;
    margin: 0 0 5px 0;
    font-size: 18px;
}

.book-author {
    color: #666;
    font-size: 14px;
    margin: 0 0 8px 0;
}

.book-price {
    color: #088178;
    font-weight: bold;
    font-size: 15px;
    margin: 0;
}

.selection-counter {
    text-align: center;
    padding: 10px;
    background: #f0f7f6;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 18px;
    color: #088178;
}

#selected-count {
    font-weight: bold;
    font-size: 24px;
    color: #EF7722;
}

.popup-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.confirm-btn {
    background: linear-gradient(135deg, #088178, #0aa095);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 15px;
    display: block;
}

.confirm-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #0aa095, #0cb8ab);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(8, 129, 120, 0.3);
}

.confirm-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
}

.whatsapp-note {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}


/* Responsive */

@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        padding: 20px;
    }
    .books-grid {
        grid-template-columns: 1fr;
    }
    .popup-header h2 {
        font-size: 20px;
    }
    .confirm-btn {
        padding: 12px 20px;
        font-size: 16px;
    }
}


/* Add to your CSS oferr2 */

.beginner-popup {
    max-width: 700px;
}

.price-tag {
    text-align: center;
    margin: 15px 0;
    padding: 10px;
    background: linear-gradient(135deg, #f36f21, #ff9a3d);
    border-radius: 10px;
    color: white;
}

.old-price {
    text-decoration: line-through;
    font-size: 20px;
    opacity: 0.8;
    margin-right: 15px;
}

.new-price {
    font-size: 28px;
    font-weight: bold;
}

.convincing-content {
    padding: 20px 0;
}

.benefits-list ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.benefits-list li {
    padding: 10px 15px;
    margin: 8px 0;
    background: #f0f7f6;
    border-radius: 8px;
    border-right: 4px solid #088178;
    transition: transform 0.3s;
}

.benefits-list li:hover {
    transform: translateX(5px);
    background: #e0f0ee;
}

.testimonial {
    background: #fff9f5;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    border-left: 5px solid #f36f21;
    position: relative;
}

.testimonial {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author {
    color: #666;
    font-style: italic;
    margin: 0;
}

.quote {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 60px;
    color: #f36f21;
    opacity: 0.3;
    font-family: serif;
}

.urgency-box {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 25px 0;
}

.stock-alert,
.savings {
    flex: 1;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.stock-alert {
    background: #fff0f0;
    border: 2px solid #ff4444;
    color: #d32f2f;
}

.fire {
    font-size: 24px;
    margin-left: 5px;
}

.savings {
    background: #f0fff0;
    border: 2px solid #4CAF50;
    color: #2e7d32;
}

.cta-section {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    margin-top: 25px;
}

.cta-text {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 25px;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 18px 30px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.whatsapp-btn i {
    font-size: 28px;
}

.small-note {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* Responsive */

@media (max-width: 768px) {
    .urgency-box {
        flex-direction: column;
    }
    .whatsapp-btn {
        padding: 15px 20px;
        font-size: 16px;
    }
    .whatsapp-btn i {
        font-size: 24px;
    }
}

#banner3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
}

#banner3 .banner-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../images/city/tiznit.PNG");
    min-width: 27%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 40px;
}

#banner3 .banner-box2 {
    background-image: url("../images/city/tarodnt.PNG");
}

#banner3 .banner-box3 {
    background-image: url("../images/city/Marrakech.PNG");
}

#banner3 h1 {
    z-index: 1;
    top: 50%;
    text-shadow: 0 2px 8px rgba(255, 251, 0, 0.4), 0 1px 2px rgba(208, 255, 0, 0.3);
    color: #fff;
}

#banner3 h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(255, 196, 0, 0.4), 0 1px 2px rgba(255, 153, 0, 0.3);
}

#banner3 span {
    color: #ffffff;
    font-size: 22px;
}

#banner3 .banner-box h2 {
    margin-top: 0px;
}

#banner3 .banner-box h1 {
    margin-top: 10px;
}

#banner3 .banner-box3 h1 {
    top: 0px;
    color: #ffffff;
}

#newsletter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background-image: url("../images/banner/bannerfin2.png");
    background-repeat: repeat;
    background-position: 0%;
    background-color: #8bb3ec;
}

#newsletter h4 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
}

#newsletter p {
    font-size: 14px;
    font-weight: 600;
    color: #102f5a;
}

#newsletter p span {
    color: #ff6427;
}

#newsletter .form {
    display: flex;
    width: 40%;
}

#newsletter input {
    height: 3.125rem;
    padding: 0 1.25em;
    font-size: 14px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
    outline: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#newsletter button {
    background-color: #0BA6DF;
    color: #fff;
    white-space: nowrap;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

footer .logo {
    margin-bottom: 30px;
}

footer h4 {
    font-size: 14px;
    padding-bottom: 20px;
}

footer p {
    font-size: 13px;
    margin: 0 0 8px;
}

footer a {
    font-size: 13px;
    text-decoration: none;
    color: #222;
    margin-bottom: 10px;
}

footer .follow {
    margin-top: 20px;
}

footer .follow i {
    color: #465b52;
    padding-right: 4px;
    cursor: pointer;
}

footer .follow i:hover,
footer a:hover {
    color: #8CE4FF;
}

footer .copyright {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    margin-top: 20px
}
.copyright p {
    color: #666;
    font-size: 14px;
    margin: 0;
}


/*shop page*/

#page-header {
    background-image: url("../images/banner/shopBanner.png");
    width: 100%;
    height: 35vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}

#page-header h2,
#page-header p {
    color: #2b3129;
}

#pagination {
    text-align: center;
}

#pagination a {
    text-decoration: none;
    background-color: #778873;
    padding: 15px 20px;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
}

#pagination a i {
    font-size: 16px;
    font-weight: 600;
}


/* Add this to your existing CSS */

#pagination a.page-link.active {
    background-color: #f36f21 !important;
    /* Your orange color */
    color: white;
    font-weight: bold;
}


/* Optional: Add hover effect for all buttons */

#pagination a:hover {
    background-color: #066c65;
}


/* single product page */

.product-card {
    display: flex;
    gap: 40px;
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-info {
    flex: 1;
}

.category {
    color: #666;
    font-size: 16px;
    margin-bottom: 10px;
}

.product-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px 0;
}

.price {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #e9ecef;
}

.quantity-input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.add-to-cart-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.add-to-cart-btn:hover {
    background-color: #ff8c42;
    color: white;
    border-color: #ff8c42;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.4);
}

.add-to-cart-btn:hover i {
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%,
    100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

.add-to-cart-btn i {
    font-size: 20px;
}

.product-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.product-details h4 {
    margin-bottom: 15px;
    color: #333;
}

.product-details ul {
    list-style: none;
    padding: 0;
}

.product-details li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}


/*fin*/

#prodetails {
    display: flex;
    margin-top: 20px;
}

#prodetails .single-pro-image {
    width: 40%;
    margin-right: 50px;
}

.small-img-group {
    display: flex;
    justify-content: space-between;
}

.small-img-col {
    flex-basis: 24%;
    cursor: pointer;
}

#prodetails .single-pro-details {
    width: 50%;
    padding-top: 30px;
}

#prodetails .single-pro-details h4 {
    padding: 40px 0 20px 0;
}

#prodetails .single-pro-details h2 {
    font-size: 26px;
}


/*#prodetails .single-pro-details select {
    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;
    }*/

#prodetails .single-pro-details input {
    width: 50px;
    height: 47px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
}

#prodetails .single-pro-details input :focus {
    outline: none;
}

#prodetails .single-pro-details button {
    background: #088178;
    color: #fff;
}

#prodetails .single-pro-details span {
    line-height: 26px;
}


/*about page*/

#page-header.about-header {
    background-image: url("../images/banner/aboutB.png");
    height: 35vh;
}

#page-header.about-header h2,
#page-header.about-header h3 {
    color: #fff;
}

#about-header {
    display: flex;
    align-items: center;
}

#about-header img {
    width: 50%;
    height: auto;
}

#about-header div {
    padding-left: 40px;
}

#about-app .video {
    width: 70%;
    height: 100%;
    margin-top: 30px auto 0 auto;
}

#about-app .video video {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}


/* contact page */

#page-header.contact-header {
    background-image: url("../images/banner/ContactBanner.png");
    height: 35vh;
}

#contact-de {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#contact-de .details {
    width: 40%;
}

#contact-de .details span,
#form-de form span {
    font-size: 12px;
}

#contact-de .details h2,
#form-de form h2 {
    font-size: 26px;
    line-height: 35px;
    padding: 20px 0;
}

#contact-de .details h3 {
    font-size: 16px;
    padding-bottom: 15px;
}

#contact-de .details li {
    list-style: none;
    display: flex;
    padding: 10px 0;
}

#contact-de .details li i {
    font-size: 14px;
    padding-right: 22px;
}

#contact-de .details li p {
    margin: 0;
    font-size: 14px;
}

#contact-de .map {
    width: 55%;
    height: 400px;
}

#contact-de .map iframe {
    width: 100%;
    height: 100%;
}

#form-de {
    display: flex;
    justify-content: space-between;
    margin: 30px;
    padding: 80px;
    border: 1px solid #e1e1e1;
}

#form-de form {
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    /* Add some padding */
    border-radius: 20px;
    /* Rounded corners */
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}


/* Create the animation */

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

#form-de form input,
#form-de form textarea {
    width: 100%;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

#form-de form input:focus,
#form-de form textarea:focus {
    background: rgba(255, 255, 255, 1);
    border-color: #088178;
    box-shadow: 0 0 0 3px rgba(8, 129, 120, 0.2);
}

#form-de form button {
    background-color: #088178;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

#form-de form button:hover {
    background-color: #066c61;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(8, 129, 120, 0.4);
}


/* Style the text on top of gradient */

#form-de form span {
    color: white;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#form-de form h2 {
    color: white;
    margin-bottom: 30px;
    font-size: 32px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#form-de .people div {
    padding-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

#form-de .people div img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    margin-right: 15px;
}

#form-de .people div p {
    margin: 0;
    font-size: 13px;
    line-height: 25px;
}

#form-de .people div p span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}


/*cart page */

#page-header.cart-header {
    background-image: url("../images/banner/CartBanner1.png");
    background-position: top 100% right 0;
    height: 35vh;
}

#cart {
    overflow-x: auto;
}

#cart table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    white-space: nowrap;
}

#cart table img {
    width: 70px;
}

#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 5px 10px 15px;
}

#cart table thead {
    border: 1px solid #e2e9e1;
    border-left: none;
    border-right: none;
}

#cart table thead td {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    padding: 18px 0;
}

#cart table tbody tr td {
    padding-top: 15px;
}

#cart table tbody td {
    font-size: 13px;
}

#cart-add {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#coupon {
    width: 50%;
    margin-bottom: 30px;
}

#coupon h3,
#Subtotal h3 {
    padding-bottom: 15px;
}

#coupon input {
    padding: 10px 20px;
    outline: none;
    width: 60%;
    margin-right: 10px;
    border: 1px solid #0e0f0e;
}

#coupon button,
#Subtotal button {
    background-color: #088178;
    color: #fff;
    padding: 12px 20px;
}

#Subtotal {
    width: 50%;
    margin-bottom: 30px;
    border: 1px solid #e2e9e1;
    padding: 30px;
}

#Subtotal table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

#Subtotal table td {
    width: 50%;
    border: 1px solid #e2e9e1;
    padding: 10px;
    font-size: 14px;
}

@media (max-width:799px) {
    .section-p1 {
        padding: 40px 40px;
    }
    #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: #e3e6f3;
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 10px;
        transition: 0.3s;
    }
    #navbar.active {
        right: 0px;
    }
    #navbar li {
        margin-bottom: 25px;
    }
    #mobile {
        display: flex;
        align-items: center;
    }
    #mobile i {
        color: #1a1a1a;
        font-size: 24px;
        padding-left: 20px;
    }
    #close {
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: #222;
        font-size: 24px;
    }
    #lg-bag {
        display: none;
    }
    #hero {
        height: 70vh;
        min-height: 500px;
        padding: 0 20px;
    }
    .hero-content {
        padding: 30px 25px;
        max-width: 100%;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-headline {
        font-size: 1.8rem;
    }
    .hero-headline .price-text {
        font-size: 2.2rem;
    }
    .hero-description {
        font-size: 1.1rem;
        padding: 12px 15px;
    }
    .hero-btn {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
    #feature {
        justify-content: center;
    }
    #feature .fe-box {
        margin: 15px 15px;
    }
    #product1 .pro-container {
        justify-content: center;
    }
    #product1 .pro {
        margin: 15px;
    }
    #banner {
        height: 40vh;
        min-height: 280px;
        background-attachment: scroll;
        /* Disable parallax on mobile */
    }
    #banner h4 {
        font-size: 16px;
        letter-spacing: 0.5px;
    }
    #banner h2 {
        font-size: 1.5rem;
        padding: 8px 10px;
    }
    #banner h2 span {
        font-size: 1.7rem;
    }
    #banner button {
        padding: 10px 20px;
        font-size: 15px;
    }
    #sm-banner .banner-box {
        min-width: 100%;
        height: 30vh;
    }
    #banner3 {
        padding: 0 40px;
    }
    #banner3 .banner-box {
        width: 45%;
    }
    #newsletter .form {
        width: 70%;
    }
    /*contact page*/
    #form-de {
        padding: 40px;
    }
    #form-de form {
        width: 50%;
    }
}

@media (max-width:477px) {
    .section-p1 {
        padding: 20px;
    }
    #header {
        padding: 10px 30px;
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 999;
        background: #E3e6f3;
    }
    #navbar {
        display: none;
    }
    #navbar.active {
        display: flex;
    }
    h1 {
        font-size: 38px;
    }
    h2 {
        font-size: 32px;
    }
    #hero {
        height: 65vh;
        min-height: 450px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-headline {
        font-size: 1.5rem;
    }
    .hero-headline .price-text {
        font-size: 1.8rem;
    }
    .hero-description {
        font-size: 1rem;
        padding: 10px 12px;
    }
    .hero-btn {
        padding: 12px 30px;
        font-size: 1rem;
        flex-direction: column;
        gap: 8px;
    }
    .btn-icon {
        font-size: 1.3rem;
    }
    #feature {
        justify-content: space-between;
    }
    #feature .fe-box {
        width: 155px;
        margin: 0 0 15px 0px;
    }
    #product1 .pro {
        width: 100%;
    }
    #banner {
        height: 35vh;
        min-height: 250px;
        background-size: cover;
        /* Ensure full coverage */
        background-position: center center;
        /* Center the image */
    }
    #banner::before {
        background: linear-gradient(45deg, rgba(0, 30, 44, 0.9) 0%, rgba(239, 54, 54, 0.7) 100%);
        /* Darker overlay for mobile */
    }
    #banner h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }
    #banner h2 {
        font-size: 1.2rem;
        line-height: 1.4;
        padding: 5px 8px;
        margin-bottom: 15px;
    }
    #banner h2 br {
        display: none;
        /* Remove line breaks for single column text */
    }
    #banner h2 span {
        font-size: 1.4rem;
        display: block;
        /* Make span appear on new line */
        margin-top: 5px;
    }
    #banner button {
        padding: 8px 18px;
        font-size: 14px;
        margin-top: 5px;
    }
    #sm-banner .banner-box {
        height: 40vh;
    }
    #sm-banner .banner-box2 {
        margin-top: 20px;
    }
    #banner3 {
        padding: 0 20px;
    }
    #banner3 .banner-box h1 {
        font-size: 80px;
        text-shadow: 0 2px 8px rgba(43, 195, 255, 0.4), 0 1px 2px rgba(52, 197, 255, 0.3);
    }
    #banner3 span {
        color: #ffffff;
        font-size: 40px;
    }
    #banner3 .banner-box {
        width: 100%;
    }
    #banner3 .banner-box3 span {
        color: #ffffff;
        font-size: 40px;
        margin-bottom: -10%;
    }
    #newsletter {
        padding: 40px 20px;
    }
    #newsletter .form {
        width: 100%;
    }
    footer .copyright {
        text-align: start;
    }
    /* single product page */
    #prodetails {
        padding: 10px;
    }
    .product-card {
        flex-direction: column;
        gap: 20px;
    }
    .single-pro-image {
        width: 100% !important;
        margin-bottom: 15px;
    }
    .single-pro-image img#MainImg {
        width: 100%;
        height: auto;
        border-radius: 10px;
        margin-bottom: 10px;
    }
    .small-img-group {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 10px;
        padding: 5px 0;
    }
    .small-img-col {
        flex: 0 0 auto;
        width: 55px;
        cursor: pointer;
    }
    .small-img-col img {
        width: 70px;
        height: 90px;
        object-fit: cover;
        border-radius: 5px;
        border: 2px solid transparent;
        transition: border-color 0.3s;
    }
    .small-img-col img:hover,
    .small-img-col img.active {
        border-color: #088178;
    }
    .product-info .star i {
        font-size: 12px;
        color: rgb(243, 181, 25);
    }
    .product-info {
        width: 100% !important;
        padding: 0;
    }
    .category {
        font-size: 12px;
        color: #666;
        margin-bottom: 8px;
    }
    .p-title {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 15px;
        color: #222;
    }
    .price-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
        background: #f9f9f9;
        border-radius: 8px;
        margin-bottom: 20px;
    }
    .price {
        font-size: 28px;
        color: #088178;
        margin: 0;
    }
    .quantity-selector {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .quantity-btn {
        width: 40px;
        height: 40px;
        border: 2px solid #ddd;
        background: white;
        border-radius: 5px;
        font-size: 18px;
        font-weight: bold;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .quantity-btn:hover {
        background: #f5f5f5;
    }
    .quantity-input {
        width: 60px;
        height: 40px;
        text-align: center;
        font-size: 18px;
        font-weight: bold;
        border: 2px solid #ddd;
        border-radius: 5px;
    }
    .quantity-input::-webkit-outer-spin-button,
    .quantity-input::-webkit-inner-spin-button {
        margin: 0;
    }
    .add-to-cart-btn {
        width: 100%;
        padding: 15px;
        background: #088178;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin: 20px 0;
        transition: background 0.3s;
    }
    .add-to-cart-btn:hover {
        background: #066a63;
    }
    .add-to-cart-btn i {
        font-size: 18px;
    }
    .product-details {
        background: #f9f9f9;
        padding: 20px;
        border-radius: 8px;
        margin-top: 20px;
    }
    .product-details h4 {
        font-size: 18px;
        margin-bottom: 15px;
        color: #222;
    }
    .product-details span {
        font-size: 14px;
        line-height: 1.6;
        color: #555;
        display: block;
    }
    /* Hide scrollbar for small images but keep functionality */
    .small-img-group::-webkit-scrollbar {
        height: 4px;
    }
    .small-img-group::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }
    .small-img-group::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 2px;
    }
    .small-img-group::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
    /* about page */
    #about-header {
        flex-direction: column;
    }
    #about-header img {
        width: 100%;
        margin-bottom: 20px;
    }
    #about-header div {
        padding-left: 0px;
    }
    #about-app .video {
        width: 100%;
    }
    /* contact page */
    #contact-de {
        flex-direction: column;
    }
    #contact-de .details {
        width: 100%;
        margin-bottom: 30px;
    }
    #contact-de .map {
        width: 100%;
    }
    #form-de {
        margin: 10px;
        padding: 30px 10px;
        flex-wrap: wrap;
    }
    #form-de form {
        width: 100%;
        margin-bottom: 30px;
    }
    /* cart page */
    #page-header.cart-header {
        background-position: top 0% right 79%;
    }
    #cart-add {
        flex-direction: column;
    }
    #coupon {
        width: 100%;
    }
    #Subtotal {
        width: 100%;
        padding: 20px;
    }
    #cart-count-mobile {
        box-sizing: border-box;
        background: #e74c3c;
        color: white;
        border-radius: 60%;
        width: 15px;
        height: 20px;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 30%;
        right: 16%;
    }
}

#discount-row {
    background-color: #f0fff0;
}

#discount-row td {
    color: #27ae60 !important;
    font-weight: bold !important;
}


/* Add to your style.css */

.single-pro-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* ===== IMAGE ZOOM STYLES ===== */
.img-zoom-container {
    position: relative;
    width: 100%;
}

#MainImg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    cursor: crosshair;
}

.img-zoom-result {
    border: 2px solid #088178;
    width: 300px;
    height: 300px;
    position: fixed;
    background-color: white;
    background-repeat: no-repeat;
    display: none;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    pointer-events: none;
    background-size: 200%;
}

/* Hide on mobile */
@media (max-width: 768px) {
    .img-zoom-result {
        display: none !important;
    }
}

#shipping-city {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

#shipping-city h3 {
    color: #088178;
    margin-bottom: 15px;
    font-size: 18px;
}

#shipping-city select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    background: white;
}

#shipping-city select:hover {
    border-color: #088178;
}

#shipping-city select:focus {
    outline: none;
    border-color: #088178;
    box-shadow: 0 0 5px rgba(8, 129, 120, 0.3);
}


/* ===== SHARE BUTTONS - SMALL VERSION ===== */

.share-buttons-small {
    display: flex;
    gap: 8px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.share-btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    color: white;
    flex: 1;
    min-width: 90px;
}

.share-btn-small i {
    font-size: 14px;
}


/* Individual platform colors */

.share-btn-small.facebook {
    background: #3b5998;
}

.share-btn-small.facebook:hover {
    background: #2d4373;
}

.share-btn-small.instagram {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5);
}

.share-btn-small.instagram:hover {
    opacity: 0.9;
}

.share-btn-small.whatsapp {
    background: #25D366;
}

.share-btn-small.whatsapp:hover {
    background: #128C7E;
}

.share-btn-small.copy {
    background: #666;
}

.share-btn-small.copy:hover {
    background: #444;
}

.share-btn-small.copy.success {
    background: #27ae60;
}


/* ===== MODAL STYLES - FOR PRIVACY, TERMS, HELP ===== */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #888;
    transition: color 0.3s;
    line-height: 1;
}

.close-modal:hover {
    color: #088178;
}


/* For RTL support */

[dir="rtl"] .close-modal {
    right: auto;
    left: 20px;
}


/* Modal header */

.modal-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #088178;
}

.modal-header h2 {
    color: #088178;
    margin: 0;
    font-size: 24px;
}

.modal-body {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-body::-webkit-scrollbar {
    width: 5px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #088178;
    border-radius: 5px;
}

.modal-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    text-align: center;
    color: #666;
}


/* Mobile styles */

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
    .modal-header h2 {
        font-size: 20px;
    }
}


/* ===== REVIEWS SECTION ===== */

#product-reviews {
    background: #f9f9f9;
    margin-top: 30px;
    border-radius: 10px;
    padding: 40px 20px;
}

.reviews-container {
    max-width: 1000px;
    margin: 0 auto;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.reviews-header h2 {
    color: #088178;
    font-size: 28px;
    margin: 0;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.average-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.big-rating {
    font-size: 36px;
    font-weight: bold;
    color: #222;
    line-height: 1;
}

.stars {
    color: #ffc107;
    margin: 5px 0;
}

.stars i {
    margin: 0 2px;
}

.review-count {
    color: #666;
    font-size: 14px;
}

.write-review-btn {
    background: #088178;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.write-review-btn:hover {
    background: #066a63;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(8, 129, 120, 0.3);
}

.write-review-btn i {
    font-size: 16px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.review-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.review-item.hidden {
    display: none;
}

.reviewer-info {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: #e8f4f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #088178;
}

.reviewer-details h4 {
    margin: 0 0 5px 0;
    color: #222;
    font-size: 18px;
}

.review-date {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

.review-rating {
    color: #ffc107;
    font-size: 14px;
}

.review-rating i {
    margin: 0 1px;
}

.review-content p {
    margin: 0 0 10px 0;
    color: #555;
    line-height: 1.6;
}

.load-more {
    text-align: center;
    margin-top: 30px;
}

.load-more-btn {
    background: transparent;
    border: 2px solid #088178;
    color: #088178;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.load-more-btn:hover {
    background: #088178;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(8, 129, 120, 0.2);
}

.load-more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.load-more-btn:disabled:hover {
    background: transparent;
    color: #088178;
    box-shadow: none;
}


/* Review Modal */

.review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.review-modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #888;
    transition: color 0.3s;
    line-height: 1;
}

.close-modal:hover {
    color: #088178;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #088178;
}

.rating-selector {
    display: flex;
    gap: 10px;
    font-size: 24px;
}

.rating-selector i {
    cursor: pointer;
    transition: transform 0.2s;
}

.rating-selector i:hover {
    transform: scale(1.2);
}

.submit-review-btn {
    width: 100%;
    padding: 14px;
    background: #088178;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-review-btn:hover {
    background: #066a63;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(8, 129, 120, 0.3);
}


/* Mobile Responsive */

@media (max-width: 768px) {
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .reviews-summary {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .write-review-btn {
        width: 100%;
        justify-content: center;
    }
    .review-item {
        padding: 20px;
    }
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .review-modal-content {
        margin: 20px auto;
        padding: 20px;
    }
}


/* RTL Support */

[dir="rtl"] .review-modal-content {
    text-align: right;
}

[dir="rtl"] .close-modal {
    right: auto;
    left: 20px;
}

[dir="rtl"] .rating-selector {
    flex-direction: row-reverse;
}

[dir="rtl"] .write-review-btn {
    flex-direction: row-reverse;
}

.product-card {
    position: relative;
    background: linear-gradient(135deg, #cfe5fd 0%, #ffe2d7 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.product-info {
    position: relative;
    z-index: 2;
}


/* ===== 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);
    overflow: auto;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #888;
    transition: color 0.3s;
    line-height: 1;
    background: none;
    border: none;
}

.close-modal:hover {
    color: #088178;
}

/* RTL Support */
[dir="rtl"] .close-modal {
    right: auto;
    left: 20px;
}

/* Help Popup */
#helpPopup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

#helpPopup > div {
    background: white;
    width: 340px;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

#helpPopup h4 {
    color: #088178;
    margin: 0 0 15px 0;
    text-align: center;
    font-size: 20px;
}

#helpPopup p {
    margin: 8px 0;
    color: #555;
    line-height: 1.6;
}

#helpPopup button {
    position: absolute;
    top: 10px;
    left: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #888;
}

#helpPopup button:hover {
    color: #088178;
}

#helpPopup a {
    background: #25D366;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

#helpPopup a:hover {
    background: #128C7E;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 20px;
    }
    
    #helpPopup > div {
        width: 90%;
    }
}

/* Active image style tbdalll*/
.small-img.active-img {
    border: 2px solid #088178;
    opacity: 1;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Minimal text */
.lang-btn {
    background: none;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 3px 8px;
    font-size: 12px;
    cursor: pointer;
    color: #666;
}

.lang-btn:hover,
.lang-btn.active-lang {
    background: #088178;
    color: white;
    border-color: #088178;
}
/* ===== SWIPE CARDS STYLES ===== */
.hero-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    min-height: 400px;
}

.hero-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: none;
}

.hero-card.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    position: relative;
}

/* Swipe Indicators */
.swipe-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0 20px;
    position: relative;
    z-index: 10;
}

.swipe-indicators .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(9, 226, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.swipe-indicators .dot.active {
    background: #ff6b35;
    width: 25px;
    border-radius: 10px;
}

/* REMOVED ALL ARROW STYLES (.swipe-btn, .prev, .next) */