/* Custom Font - ShurjoWeb with WOFF2 and WOFF Support */
@font-face {
    font-family: 'ShurjoWeb';
    /* WOFF2 - Best format, use if available */
    src: url('../fonts/ShurjoWeb_400_v5_1.woff2') format('woff2'),
         /* WOFF - Good fallback */
         url('../fonts/ShurjoWeb_400_v5_1.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap; /* Better loading performance */
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Default/fallback colors - will be overridden by dynamic colors from database */
    --primary-green: #006348;
    --primary-green-light: #0B864A;
    --primary-green-dark: #074B23;
    --accent-green: #129C59;
    --light-green: #E2FFF1;
    --light-green-bg: #F4FFF6;
    --cream-bg: #FCF7F7;
    --white: #FFFFFF;
    --text-dark: #4B5563;
    --border-green: #39AF82;
    --border-dashed: #C6EAD5;
    --orange: #f16334;
    --red: #6F0505;
    --text-red: #B83E3E;
}

body {
    font-family: 'ShurjoWeb', 'Hind Siliguri', 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    padding-top: 70px; /* Space for fixed navbar - responsive */
}

@media (min-width: 768px) {
    body {
        padding-top: 80px;
    }
}

/* Navigation Bar */
.navbar {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-menu-mobile {
    background: rgba(0, 99, 72, 0.95);
    backdrop-filter: blur(10px);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 5px;
    display: block;
}

.nav-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-green);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.logo i {
    font-size: 28px;
    color: var(--light-green);
}

.nav-cta {
    background-color: var(--primary-green-light) !important;
    border: 2px solid var(--light-green) !important;
    color: var(--white) !important;
}

.nav-cta:hover {
    background-color: var(--accent-green) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-toggle {
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Container is now handled by Tailwind utility classes */
.container {
    /* Keep for backward compatibility */
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--cream-bg) 0%, var(--light-green) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 Q300,60 600,30 T1200,0 L1200,120 L0,120 Z" fill="rgba(145,73,73,0.1)"/></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 38px;
    font-weight: 500;
    color: var(--primary-green);
    background: linear-gradient(135deg, var(--cream-bg) 0%, var(--light-green) 100%);
    padding: 15px;
    border: 2px dashed var(--border-green);
    border-radius: 10px;
    margin: 0 100px 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.price-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
}

.price-banner {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    padding: 25px 50px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 99, 72, 0.3);
    border: 3px solid var(--light-green);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
}

.price-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.price-text {
    font-size: 0;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.price-label {
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.price-amount {
    font-size: 64px;
    font-weight: 700;
    color: var(--light-green);
    text-shadow: 0 0 15px rgba(226, 255, 241, 0.6);
    line-height: 1;
    margin: 0 5px;
}

.price-currency {
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--accent-green) 100%);
    color: var(--white);
    padding: 18px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    border: 3px solid var(--light-green);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(11, 134, 74, 0.4);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: 200px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--primary-green-light) 100%);
    box-shadow: 0 8px 25px rgba(11, 134, 74, 0.5);
    border-color: var(--white);
}

.cta-button:active {
    transform: translateY(-1px) scale(0.98);
}

.cta-button i {
    margin-right: 10px;
    font-size: 22px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.center-button {
    display: block;
    text-align: center;
    margin: 30px auto;
    max-width: 300px;
}

/* Product Section */
.product-section {
    padding: 50px 0;
    background-color: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

/* Image Carousel */
.image-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    border: 2px dashed var(--primary-green);
}

.carousel-slide {
    display: none;
    width: 100%;
}

.carousel-slide.active {
    display: block;
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--light-green-bg) 0%, var(--cream-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-green);
    border-radius: 10px;
    border: 2px dashed var(--primary-green);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 99, 72, 0.8);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background-color: var(--primary-green);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

/* Product Details */
.product-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer-banner {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 20px;
    border-radius: 10px;
    border: 2px dashed var(--border-dashed);
    text-align: center;
}

.offer-banner h3 {
    font-size: 35px;
    font-weight: 700;
    color: var(--primary-green);
    background: linear-gradient(135deg, var(--cream-bg) 0%, var(--light-green) 100%);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.offer-banner p {
    font-size: 25px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.icon-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 22px;
    color: var(--primary-green);
    font-weight: 600;
}

.icon-feature i {
    font-size: 27px;
}

.features-box {
    background: linear-gradient(135deg, var(--cream-bg) 0%, var(--light-green) 100%);
    border: 2px dashed var(--border-green);
    border-radius: 10px;
    padding: 20px;
    position: relative;
    margin-top: -18px;
}

.features-box h4 {
    font-size: 35px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    margin-bottom: 20px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 20px;
    color: var(--primary-green);
}

.features-list li i {
    color: var(--primary-green);
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Offer Section */
.offer-section {
    background-color: var(--primary-green);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.offer-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 Q300,0 600,30 T1200,60 L1200,120 L0,120 Z" fill="white"/></svg>') no-repeat bottom;
    background-size: cover;
}

.section-title {
    font-size: 38px;
    font-weight: 500;
    color: var(--primary-green);
    text-align: center;
    background: linear-gradient(135deg, var(--cream-bg) 0%, var(--light-green) 100%);
    padding: 15px;
    border: 2px dashed var(--border-green);
    border-radius: 10px;
    margin: 0 100px;
}

.section-title-white {
    font-size: 35px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin-bottom: 30px;
}

/* Description Section */
.description-section {
    padding: 30px 0;
    background-color: var(--white);
}

.description-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-red);
    text-align: center;
    line-height: 34px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Features Grid Section */
.features-grid-section {
    padding: 30px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-card {
    background-color: var(--light-green-bg);
    border: 1px dashed var(--primary-green);
    border-radius: 15px;
    padding: 20px;
    margin: 10px;
}

.feature-card h3 {
    font-size: 21px;
    font-weight: 500;
    color: var(--primary-green);
    line-height: 24px;
    background: linear-gradient(135deg, var(--cream-bg) 0%, #EEFFEC 100%);
    padding: 10px;
    border: 2px dashed var(--border-green);
    border-radius: 10px;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    margin-bottom: 20px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 18px;
    color: var(--primary-green);
}

.feature-list li i {
    color: var(--primary-green);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-images {
    position: relative;
    margin: 10px;
}

/* Gallery Section */
.gallery-section {
    padding: 30px 0 50px;
    background-color: var(--white);
}

.gallery-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

.gallery-slider-track {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gallery-slider-container {
    display: flex;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide-item {
    min-width: 33.333%;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-slider-prev,
.gallery-slider-next {
    border: none;
    outline: none;
    cursor: pointer;
}

.gallery-slider-prev:active,
.gallery-slider-next:active {
    transform: translateY(-50%) scale(0.95) !important;
}

.gallery-indicators {
    position: relative;
    z-index: 10;
}

.gallery-indicators .indicator-dot {
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-indicators .indicator-dot:hover {
    background-color: var(--accent-green) !important;
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .gallery-slider-wrapper {
        padding: 0 50px;
    }
    
    .gallery-slide-item {
        min-width: 50%;
    }
}

@media (max-width: 640px) {
    .gallery-slider-wrapper {
        padding: 0 50px;
    }
    
    .gallery-slide-item {
        min-width: 100%;
    }
    
    .gallery-slider-prev {
        left: 10px !important;
        transform: translateY(-50%) !important;
    }
    
    .gallery-slider-next {
        right: 10px !important;
        transform: translateY(-50%) !important;
    }
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
    position: relative;
}

.reviews-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

.reviews-slider-track {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.reviews-slider-container {
    display: flex;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-slide-item {
    min-width: 100%;
    flex-shrink: 0;
}

.review-slide-item {
    transition: opacity 0.3s ease;
}

.review-card {
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    background: var(--white);
    cursor: pointer;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 99, 72, 0.1) 0%, rgba(11, 134, 74, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.review-card:hover::before {
    opacity: 1;
}

.review-card:hover {
    border-color: var(--light-green);
}

.reviews-slider-prev,
.reviews-slider-next {
    border: none;
    outline: none;
    cursor: pointer;
}

.reviews-slider-prev:active,
.reviews-slider-next:active {
    transform: translateY(-50%) scale(0.95) !important;
}

.reviews-indicators {
    position: relative;
    z-index: 10;
}

.indicator-dot {
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator-dot:hover {
    background-color: var(--light-green) !important;
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .reviews-slider-wrapper {
        padding: 0 50px;
    }
}

@media (max-width: 640px) {
    .reviews-slider-wrapper {
        padding: 0 50px;
    }
    
    .reviews-slider-prev {
        left: 10px !important;
        transform: translateY(-50%) !important;
    }
    
    .reviews-slider-next {
        right: 10px !important;
        transform: translateY(-50%) !important;
    }
}

/* Notice Section */
.notice-section {
    background-color: var(--primary-green);
    padding: 20px 0;
    position: relative;
}

.notice-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.notice-list li {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 15px;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.notice-list li:last-child {
    border-bottom: none;
}

/* Contact Section */
.contact-section {
    background-color: var(--primary-green-dark);
    padding: 30px 0;
}

.contact-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

.contact-title a {
    color: var(--white);
    text-decoration: none;
}

/* Checkout Form Section */
.checkout-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #EDFFF4 0%, var(--light-green) 100%);
}

.checkout-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 2px dashed var(--primary-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 35px;
    font-weight: 600;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 30px;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 2px dashed var(--primary-green);
    border-radius: 10px;
    font-size: 16px;
    font-family: 'ShurjoWeb', 'Hind Siliguri', sans-serif;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(18, 156, 89, 0.1);
}

.submit-button {
    background-color: var(--red);
    color: var(--white);
    padding: 18px 30px;
    border: none;
    border-radius: 10px;
    font-size: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-family: 'ShurjoWeb', 'Hind Siliguri', sans-serif;
}

.submit-button:hover {
    background-color: #8B0A0A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(111, 5, 5, 0.3);
}

.submit-button i {
    margin-right: 8px;
}

/* Custom Toastr Styles */
.toast-success {
    background-color: #006348 !important;
}

.toast-error {
    background-color: #d33 !important;
}

.toast-info {
    background-color: #17a2b8 !important;
}

.toast-warning {
    background-color: #f16334 !important;
}

/* SweetAlert2 Custom Styles */
.swal2-popup {
    font-family: 'ShurjoWeb', 'Hind Siliguri', sans-serif !important;
}

.swal2-title {
    font-family: 'ShurjoWeb', 'Hind Siliguri', sans-serif !important;
    font-size: 24px !important;
}

.swal2-content {
    font-family: 'ShurjoWeb', 'Hind Siliguri', sans-serif !important;
    font-size: 16px !important;
}

.swal2-confirm {
    background-color: #006348 !important;
    font-family: 'ShurjoWeb', 'Hind Siliguri', sans-serif !important;
}

.swal2-cancel {
    font-family: 'ShurjoWeb', 'Hind Siliguri', sans-serif !important;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
    color: var(--white);
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3.footer-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-green);
}

.footer-section h4.footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--light-green);
    border-bottom: 2px dashed rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.footer-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--primary-green-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--light-green);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.footer-contact i {
    color: var(--light-green);
    font-size: 18px;
    width: 20px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--light-green);
}

.footer-info {
    list-style: none;
}

.footer-info li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    padding-left: 20px;
    position: relative;
}

.footer-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--light-green);
    font-weight: bold;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px dashed rgba(255, 255, 255, 0.2);
    margin-top: 30px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    /* Desktop nav-menu should be hidden on mobile */
    .nav-menu {
        display: none !important;
    }

    /* Mobile menu styles */
    .nav-menu-mobile {
        display: flex !important;
        animation: slideDown 0.3s ease;
    }
    
    .nav-menu-mobile.hidden {
        display: none !important;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-title {
        font-size: 21px;
        margin: 0;
        padding: 15px;
    }

    .price-cta-wrapper {
        gap: 20px;
    }

    .price-banner {
        max-width: 100%;
        padding: 20px 25px;
    }

    .price-label,
    .price-currency {
        font-size: 22px;
    }

    .price-amount {
        font-size: 48px;
    }

    .cta-button {
        width: 100%;
        max-width: 350px;
        font-size: 20px;
        padding: 15px 25px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-carousel {
        grid-template-columns: 1fr;
    }

    .reviews-carousel {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 26px;
        margin: 0 10px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkout-form-wrapper {
        padding: 20px;
    }

    .contact-title {
        font-size: 28px;
    }

    .cta-button {
        font-size: 20px;
        padding: 12px 20px;
    }

    .offer-banner h3 {
        font-size: 30px;
    }

    .features-box h4 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .hero-section {
        padding: 30px 0;
    }

    .product-section {
        padding: 30px 0;
    }

    .placeholder-image {
        height: 250px;
        font-size: 18px;
    }

    .price-text {
        font-size: 20px;
    }

    .price-amount {
        font-size: 32px;
    }

    .cta-button {
        font-size: 18px;
        padding: 12px 20px;
        min-width: 180px;
    }

    .logo {
        font-size: 18px;
    }

    .logo i {
        font-size: 20px;
    }

    .footer {
        padding: 30px 0 15px;
    }

    .footer-section h3.footer-title {
        font-size: 18px;
    }

    .footer-section h4.footer-heading {
        font-size: 16px;
    }

    .footer-section p,
    .footer-links a,
    .footer-contact li,
    .footer-info li {
        font-size: 14px;
    }
}
