/*.product-icon {*/
/*  cursor: pointer;*/
/*  transition: background-color 0.3s ease, color 0.3s ease;*/
/*  padding: 8px;*/
/*  border-radius: 50%;*/
/*}*/

/*.product-icon.active {*/
/*  background-color: #8c4f47;*/
/*  color: white;*/
/*}*/

.nav-dropdown .dropdown-menu {
    display: none;
}
.clickable {
  cursor: pointer;
}
.nav-dropdown.active .dropdown-menu {
    display: block;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Top Bar */
        .top-bar {
            background-color: #8C4F47;
            color: white;
            text-align: center;
            padding: 8px 0;
            position: relative;
        }

        .banner-text {
            font-size: 14px;
            font-weight: 500;
        }

        .banner-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 12px;
            cursor: pointer;
        }

        .banner-arrow-left {
            left: 20px;
        }

        .banner-arrow-right {
            right: 20px;
        }

        /* Navbar */
        .navbar {
            background-color: white;
            padding: 5px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
        }

        .navbar.scrolled {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }

        /* Logo */
        .logo {
            display: flex;
            align-items: center;
        }

        .logo-img {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: contain;
            margin-right: 15px;

        }

        .brand-name {
            font-size: 18px;
            font-weight: bold;
            color: #3C3C3C;
        }

        /* Navigation Links Main */
        .nav-links-main {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .nav-link-main {
            text-decoration: none;
            color: #A3503E;
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 5px;
            transition: color 0.3s ease;
        }

        .nav-link-main:hover {
            color: #8C4F47;
        }

        .nav-link-main.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #006E5F;
        }

        /* Dropdown Styles */
        .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .dropdown-toggle i {
            font-size: 10px;
            transition: transform 0.3s ease;
        }

        .nav-dropdown:hover .dropdown-toggle i,
        .nav-dropdown.active .dropdown-toggle i {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 250px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            padding: 15px 0;
            margin-top: 10px;
            display: none;
        }

        .nav-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            display: block;
        }

        .nav-dropdown.active .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            display: block !important;
        }

        /* When active class is present, override hover behavior */
        .nav-dropdown.active:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            display: block !important;
        }

        /* Keep dropdown open when hovering over the dropdown menu itself */
        .dropdown-menu:hover {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            display: block;
        }

        .dropdown-category {
            position: relative;
        }

        .category-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            color: #A3503E;
            text-decoration: none;
            font-weight: 500;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            border-bottom: 1px solid #f0f0f0;
        }

        .category-link:hover {
            background-color: #f8f8f8;
            color: #8C4F47;
            padding-left: 25px;
        }

        .category-link i {
            font-size: 10px;
            transition: transform 0.3s ease;
        }

        .dropdown-category:hover .category-link i {
            transform: rotate(90deg);
        }

        .sub-dropdown {
            position: absolute;
            left: 100%;
            top: 0;
            background: white;
            min-width: 200px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            z-index: 1001;
            padding: 10px 0;
            display: none;
        }

        .dropdown-category:hover .sub-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
            display: block;
        }

        /* Keep sub-dropdown open when hovering over it */
        .sub-dropdown:hover {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
            display: block;
        }

        .sub-dropdown-link {
            display: block;
            padding: 10px 20px;
            color: #666;
            text-decoration: none;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            border-bottom: 1px solid #f0f0f0;
        }

        .sub-dropdown-link:hover {
            background-color: #f8f8f8;
            color: #8C4F47;
            padding-left: 25px;
        }

        .sub-dropdown-link:last-child {
            border-bottom: none;
        }

        /* Mobile Toggle Button */
        .mobile-toggle {
            display: none;
            font-size: 24px;
            color: #3C3C3C;
            cursor: pointer;
            padding: 10px;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 300px;
            height: 100vh;
            background-color: white;
            /* box-shadow: 2px 0 10px rgba(0,0,0,0.1); */
            z-index: 1000;
            transition: left 0.3s ease;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-content {
            padding: 20px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .mobile-menu-logo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: contain;
            background-color: white;
            padding: 5px;
        }

        .mobile-menu-close {
            font-size: 24px;
            color: #3C3C3C;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-links {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .mobile-nav-link {
            text-decoration: none;
            color: #A3503E;
            font-weight: 500;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
            transition: color 0.3s ease;
        }

        .mobile-nav-link:hover,
        .mobile-nav-link.active {
            color: #8C4F47;
        }

        .mobile-menu-actions {
            display: flex;
            gap: 20px;
            margin: 20px 0;
            padding: 20px 0;
            border-top: 1px solid #f0f0f0;
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-action-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #A3503E;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .mobile-action-item:hover {
            color: #8C4F47;
        }

        .mobile-action-item i {
            font-size: 18px;
        }

        .mobile-menu-search {
            margin-top: 20px;
        }

        .mobile-search-container {
            position: relative;
        }

        /* Mobile Dropdown Styles */
        .mobile-nav-dropdown {
            position: relative;
        }

        .mobile-dropdown-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
            color: #A3503E;
            font-weight: 500;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-dropdown-toggle i {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .mobile-dropdown-toggle.active i {
            transform: rotate(180deg);
        }

        .mobile-dropdown-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .mobile-dropdown-menu.active {
            max-height: 500px;
        }

        .mobile-dropdown-category {
            position: relative;
        }

        .mobile-category-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            color: #666;
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            border-bottom: 1px solid #f0f0f0;
            background-color: #f8f8f8;
        }

        .mobile-category-toggle i {
            font-size: 10px;
            transition: transform 0.3s ease;
        }

        .mobile-category-toggle.active i {
            transform: rotate(180deg);
        }

        .mobile-sub-dropdown {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: #fafafa;
        }

        .mobile-sub-dropdown.active {
            max-height: 200px;
        }

        .mobile-sub-dropdown-link {
            display: block;
            padding: 10px 40px;
            color: #888;
            text-decoration: none;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-sub-dropdown-link:hover {
            background-color: #f0f0f0;
            color: #8C4F47;
            padding-left: 50px;
        }

        .mobile-search-icon {
            position: absolute;
            left: 15px;
            color: #666;
            font-size: 16px;
        }

        .mobile-search-bar {
            width: 100%;
            padding: 15px 15px 15px 45px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
            outline: none;
        }

        .mobile-search-bar::placeholder {
            color: #999;
        }

        /* Mobile Overlay */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 999;
            display: none;
        }

        .mobile-overlay.active {
            display: block;
        }

        /* Search Popup */
        .search-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 1001;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .search-popup.active {
            display: flex;
        }

        .search-popup-content {
            background-color: white;
            width: 90%;
            max-width: 500px;
            border-radius: 10px;
            padding: 30px;
            position: relative;
        }

        .search-popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .search-popup-header h3 {
            margin: 0;
            color: #8C4F47;
            font-size: 20px;
        }

        .search-popup-close {
            font-size: 24px;
            color: #666;
            cursor: pointer;
            padding: 5px;
        }

        .search-popup-input {
            position: relative;
            margin-bottom: 20px;
        }

        .search-popup-input i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            font-size: 16px;
        }

        .search-popup-input input {
            width: 100%;
            padding: 15px 15px 15px 45px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            outline: none;
        }

        .search-popup-input input:focus {
            border-color: #8C4F47;
        }

        .search-popup-suggestions {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .suggestion-item {
            padding: 10px 15px;
            background-color: #f8f8f8;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .suggestion-item:hover {
            background-color: #e8f4f4;
        }

        /* Search Bar */
        .search-container {
            flex: 1;
            max-width: 500px;
            margin: 0 40px;
            position: relative;
        }

        .search-bar {
            width: 100%;
            padding: 12px 45px 12px 40px;
            border: none;
            background-color: #DDE7E7;
            border-radius: 8px;
            font-size: 14px;
            outline: none;
            padding-top: 20px;
            padding-bottom: 20px;
            
        }

        .search-bar::placeholder {
            color: #999;
        }

        .search-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            font-size: 16px;
        }

        .mic-icon {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            font-size: 16px;
        }

        /* User Icons */
        .user-actions {
            display: flex;
            align-items: center;
            gap: 20px;
           
        }

        .action-icon {
            font-size: 20px;
            color: #3C3C3C;
            cursor: pointer;
            position: relative;
            text-decoration: none;
        }

        .cart-notification {
            position: absolute;
            top: -5px;
            right: -5px;
            width: 8px;
            height: 8px;
            background-color: #008080;
            border-radius: 50%;
        }

        /* Navigation Links */
        .nav-links {
            background-color: white;
            border-top: 1px solid #eee;
            padding: 15px 0;
        }

        .nav-links-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 40px;
        }

        .nav-link {
            text-decoration: none;
            color: #A3503E;
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 5px;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #006E5F;
        }

        /* Banner Slider */
        .banner {
            position: relative;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            padding: 40px;
        }

        .banner-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            transition: transform 1.5s cubic-bezier(0.4, 0.0, 0.2, 1);
            will-change: transform;
        }

        .banner-slide {
            min-width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .banner-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right,
                rgba(255, 255, 255, 0.8) 3%,    /* left bilkul white */
                rgba(255, 255, 255, 0.1) 10%,   /* 10% tak halki safedi */
                transparent 30%);               /* 30% tak fade ho jaye */
        }

       

        .banner-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
            margin-left: 8%;
        }

        .banner-logo {
            margin-left: 12%;
            height: 150px;
            width: 130px;
        }
        @media (max-width: 768px) {
            .banner-logo {
                visibility: hidden;
            }
        }
@media (max-width:768px) {
    
}
        .shop-now-btn {
            margin-bottom: 70%;
            background-color: #8C4F47;
            color: white;
            padding: 17px 45px;
            border: none;
          
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .shop-now-btn:hover {
            background-color: #7a433c;
        }

        /* Carousel Indicators */
        .carousel-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 3;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.8);
        }

        .indicator:hover {
            background-color: rgba(255, 255, 255, 0.8);
            transform: scale(1.2);
        }

        .indicator.active {
            background-color: #8C4F47;
            border-color: #8C4F47;
            transform: scale(1.1);
        }

        /* Top Product Section */
        .top-product {
            background-color: white;
            padding: 60px 0;
        }

        .top-product-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .top-product-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

            .top-product-title {
                font-size: 40px;
                font-weight: bold;
                color: #8C4F47;
                margin: 0;
            }

        .top-product-controls {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .filter-buttons {
            display: flex;
            gap: 30px;
        }

        .mobile-only {
            display: none;
        }

        .mobile-nav {
            display: none;
        }

        .filter-btn {
            background: transparent;
            border: none;
            color: #006E5F;
            padding: 0;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
        }

        .filter-btn:hover {
            color: #8C4F47;
        }

        .filter-btn.active {
            color: #8C4F47;
        }

        .filter-btn.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #8C4F47;
        }

        .top-product-nav {
            display: flex;
            gap: 10px;
        }

        .nav-arrow {
            width: 40px;
            height: 40px;
            border: 1px solid #8C4F47;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-arrow:hover {
            background-color: #8C4F47;
            color: white;
        }

        .nav-arrow i {
            color: #8C4F47;
            font-size: 14px;
        }

        .nav-arrow:hover i {
            color: white;
        }

        .top-product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .product-card {
            background: white;
            /* border-radius: 8px; */
            padding: 20px;
            text-align: center;
            /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
            transition: transform 0.3s ease, opacity 0.3s ease;
            will-change: transform, opacity;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            opacity: 1;
        }

        .product-card:hover {
            transform: translateY(-5px) translateZ(0);
        }

        .product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            /* border-radius: 8px; */
            margin-bottom: 15px;
        }

        .product-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

        .shop-now-link {
            color: #8C4F47;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
        }

        .shop-now-link:hover {
            text-decoration: underline;
        }

        /* New Arrivals Section */
        .new-arrivals {
            background-color: #E8F4F4;
            padding: 60px 0;
        }

        .new-arrivals-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .new-arrivals-header {
            text-align: center;
            margin-bottom: 40px;
        }

            .new-arrivals-title {
                font-size: 40px;
                font-weight: bold;
                color: #8C4F47;
                margin: 0;
            }

        .new-arrivals-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
        }

        .new-arrivals-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
        }

        .new-arrivals-nav-left {
            left: -60px;
        }

        .new-arrivals-nav-right {
            right: -60px;
        }

        .new-arrivals-arrow {
            width: 40px;
            height: 40px;
            border: 1px solid #8C4F47;
            background: #E8F4F4;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .new-arrivals-arrow:hover {
            background-color: #8C4F47;
            color: white;
        }

        .new-product-card {
            background: white;
            border: none;
            padding: 0;
            box-shadow: none;
            transition: transform 0.3s ease, opacity 0.3s ease;
            will-change: transform, opacity;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            opacity: 1;
            overflow: hidden;
        }

        .new-product-card:hover {
            transform: translateY(-5px) translateZ(0);
        }

       .new-product-image {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.5s ease;
}


.new-product-card:hover .new-product-image {
    transform: scale(1.1); /* Zoom-in on hover */
}
        

        .new-product-content {
            padding: 20px;
        }

        .new-product-price {
            font-size: 18px;
            font-weight: 500;
            color: #006e5f;
            margin-bottom: 5px;
        }

        .new-product-price .strikethrough {
            text-decoration: line-through;
            color: #999;
            font-size: 14px;
            margin-right: 5px;
            margin-left: 10px;
        }

        .new-product-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }

        .new-product-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .new-product-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 0;
            text-align: left;
        }

        .product-icons {
            display: flex;
            gap: 15px;
        }

        .product-icon {
            font-size: 18px;
            color: #006e5f;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .product-icon:hover {
            color: #7a433c;
        }

        .view-all-btn {
            text-align: center;
            margin-top: 40px;
        }

        .view-all-button {
            background-color: #E8F4F4;
            color: #8C4F47;
            border: 1px solid #8C4F47;
            padding: 12px 30px;
            /* border-radius: 5px; */
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .view-all-button:hover {
            background-color: #8C4F47;
            color: white;
        }

        /* Special Collections Section */
        .special-collections {
            background-color: white;
            padding: 60px 0;
        }

        .special-collections-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .collections-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .collection-card {
            position: relative;
            height: 500px;
            width: 80%;
            margin: 0 auto;
            overflow: visible;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            /* box-shadow: 0 8px 25px rgba(0,0,0,0.15); */
            transition: all 0.3s ease;
        }

        .collection-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.2);
        }

        .festive-collection {
            background-image: url('assets/images/card1.png');
        }

        .limited-edition {
            background-image: url('assets/images/card2.png');
        }

        .collection-overlay {
            position: absolute;
            bottom: -20px;
            right: -60px;
            background-color: #F8F5EF;
            padding: 40px;
            width: 330px;
            height: 230px;
            text-align: center;
            /* box-shadow: 0 4px 15px rgba(0,0,0,0.1); */
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
        }

        .collection-small-text {
            font-size: 12px;
            color: #A05245;
            margin-bottom: 10px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .collection-title {
            font-size: 30px;
            color: #2F706B;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .collection-shop-btn {
            background-color: #A05245;
            color: white;
            padding: 12px 30px;
            border: none;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .collection-shop-btn:hover {
            background-color: #8B3A3A;
        }

        /* Promotional Banners Section */
        .promotional-banners {
            background-color: white;
            padding: 60px 0;
        }

        .promotional-banners-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .banners-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }

        .banner-card {
            position: relative;
            background-color: #F5F5DC;
            border: 1px solid #D2B48C;
            /* border-radius: 8px; */
            padding: 30px;
            text-align: center;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .banner-small-text {
            font-size: 12px;
            color: #8B4513;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .banner-title {
            font-size: 24px;
            color: #20B2AA;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .banner-shop-btn {
            background-color: #8C4F47;
            color: white;
            padding: 12px 30px;
            border: none;
            /* border-radius: 5px; */
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
            align-self: center;
        }

        .banner-shop-btn:hover {
            background-color: #7a433c;
        }

        /* Gift Hampers Section */
        .gift-hampers {
            background-color: #E0F7FA;
            padding: 60px 0;
        }

        .gift-hampers-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .gift-hampers-header {
            text-align: center;
            margin-bottom: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

            .gift-hampers-title {
                font-size: 40px;
                font-weight: bold;
                color: #8C4F47;
                margin: 0;
            }

        .gift-hampers-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            margin-bottom: 40px;
        }

        .gift-hampers-nav {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 10;
            display: flex;
            gap: 10px;
        }

        .gift-hampers-nav-left {
            display: none;
        }

        .gift-hampers-nav-right {
            display: none;
        }

        .gift-hampers-arrow {
            width: 40px;
            height: 40px;
            border: 1px solid #8C4F47;
            background: #E0F7FA;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gift-hampers-arrow:hover {
            background-color: #8C4F47;
            color: white;
        }

        .gift-hamper-card {
            background: white;
            border: none;
            padding: 0;
            box-shadow: none;
            transition: transform 0.3s ease;
            text-align: center;
            will-change: transform;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            opacity: 1;
        }

        .gift-hamper-card:hover {
            transform: translateY(-5px) translateZ(0);
        }

        .gift-hamper-image {
             width: 100%;
            height: 270px;
            object-fit: cover;
            /* border-radius: 8px; */
            margin-bottom: 0;
        }

        .gift-hamper-content {
            padding: 20px;
        }

        .gift-hamper-price {
            font-size: 18px;
            font-weight: 500;
            color: #006e5f;
            margin-bottom: 5px;
            text-align: start;
        }

        .gift-hamper-price .strikethrough {
            text-decoration: line-through;
            color: #999;
            font-size: 14px;
            margin-right: 5px;
            margin-left: 10px;
        }

        .gift-hamper-title {
            font-size: 16px;
            font-weight: 500;
            color: brown;
            margin-bottom: 15px;
            text-align: start;
        }

        .gift-hamper-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .gift-hamper-title {
            font-size: 16px;
            font-weight: 500;
            color: brown;
            margin-bottom: 0;
            text-align: left;
        }

        .gift-hamper-icons {
            display: flex;
            gap: 15px;
        }

        .gift-hamper-icon {
            font-size: 18px;
            color: #8C4F47;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .gift-hamper-icon:hover {
            color: #7a433c;
        }

        .gift-hampers-view-all {
            text-align: center;
        }

        .gift-hampers-view-all-btn {
            background-color: transparent;
            color: #8C4F47;
            border: 1px solid #8C4F47;
            padding: 12px 30px;
            /* border-radius: 5px; */
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gift-hampers-view-all-btn:hover {
            background-color: #8C4F47;
            color: white;
        }

        /* Image Gallery Section */
        .image-gallery {
            background-color: white;
            padding: 60px 0;
          
        }

        .image-gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .image-gallery-header {
            text-align: center;
            margin-bottom: 40px;
        }

            .image-gallery-title {
                font-size: 40px;
                font-weight: bold;
                color: #8C4F47;
                margin: 0 0 15px 0;
            }

        .image-gallery-description {
            font-size: 16px;
            color: #006E5F;
            margin: 0;
            max-width: 600px;
            margin: 0 auto;
        }

        .image-gallery-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.5fr;
            gap: 10px;
            border-radius: 0px !important;
            position: relative;
            align-items: stretch;
        }

        .gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
        }

        .gallery-nav-left {
            left: -60px;
        }

        .gallery-nav-right {
            right: -60px;
        }

        .gallery-arrow {
            width: 40px;
            height: 40px;
            border: 1px solid #8C4F47;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-arrow:hover {
            background-color: #8C4F47;
            color: white;
        }

        .gallery-image-container {
            position: relative;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .gallery-image-container:hover {
            transform: translateY(-5px);
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .play-button:hover {
            background-color: rgba(255, 255, 255, 1);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .play-button i {
            color: #8C4F47;
            font-size: 18px;
        }

        .video-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-overlay:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-icon {
            width: 200px;
            height: 200px;
            object-fit: contain;
        }

        .left-image {
            height: 500px;
        }

        .gallery-middle {
            display: flex;
            flex-direction: column;
            gap: 10px;
            height: 500px;
        }

        .middle-large {
            height: 240px;
        }

        .gallery-middle-bottom {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            flex: 1;
        }

        .middle-small {
            height: 100%;
        }

        .right-image {
            height: 500px;
        }

        /* Newsletter Sign Up Section */
        .newsletter-signup {
            padding: 60px 0;
        }

        .newsletter-container {
            max-width: 600px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .newsletter-title {
            font-size: 40px;
            font-weight: bold;
            color: #8C4F47;
            margin: 0 0 15px 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .newsletter-description {
            font-size: 18px;
            font-weight: 400;
            color: #006E5F;
            margin: 0 0 30px 0;
        }

        .newsletter-form {
            display: flex;
            gap: 0;
            max-width: 400px;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            padding: 20px 40px;
            border: 1px solid rgba(128, 128, 128, 0.37);
            /* border-radius: 5px 0 0 5px; */
            font-size: 14px;
            outline: none;
            text-align: center;
        }

        .newsletter-input::placeholder {
            color: #999;
        }

        .newsletter-submit {
            background-color: #a75e55;
            color: white;
            border: none;
            padding: 25px 42px;
       
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .newsletter-submit:hover {
            background-color: #7a433c;
        }

        /* Main Footer Section */
        .main-footer {
            background-color: #c8d9d7;
            padding: 60px 0;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-content {
            display: flex;
            justify-content: center;
            align-items: flex-start;
        }

        .footer-columns {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            width: 100%;
            max-width: 1200px;
        }

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

        .footer-logo-img {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            object-fit: contain;
            
            padding: 10px;
        }

        .social-media {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            transform: scale(1.1);
        }

        .social-icon i.fab.fa-instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .social-icon i.fab.fa-facebook-f {
            color: #1877F2;
        }

        .social-icon i.fab.fa-x-twitter {
            color: #000000;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
        }

        .footer-column-title {
            font-size: 16px;
            font-weight: bold;
            color: #8C4F47;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #8C4F47;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .contact-phone,
        .contact-email,
        .contact-address {
            color: #333;
            font-size: 14px;
            margin: 0;
            line-height: 1.4;
        }

        .contact-phone {
            font-weight: 600;
        }

        /* Copyright Footer */
        .copyright-footer {
            background-color: #8C4F47;
            padding: 20px 0;
        }

        .copyright-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .copyright-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .payment-methods {
            color: white;
            font-size: 14px;
            margin: 0;
        }

        .copyright-text {
            color: white;
            font-size: 14px;
            margin: 0;
        }

        .legal-links {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .legal-links a {
            color: white;
            text-decoration: none;
            font-size: 12px;
            transition: color 0.3s ease;
        }

        .legal-links a:hover {
            color: #FFD700;
        }

        .separator {
            color: white;
            font-size: 12px;
        }

        /* Mobile scroll optimization */
        @media (max-width: 768px) {
            * {
                -webkit-overflow-scrolling: touch;
            }
            
            body {
                -webkit-overflow-scrolling: touch;
                overflow-x: hidden;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-container {
                justify-content: space-between;
                align-items: center;
            }

            .nav-links-main {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            .logo {
                order: 1;
            }

            .user-actions {
                order: 2;
                display: flex;
                align-items: center;
                gap: 15px;
                 margin-left: 35%;
            }

            .mobile-toggle {
                order: 3;
            }

            .search-icon-mobile {
                display: block;
            }

            .desktop-only {
                display: none;
            }

            .banner {
                height: 50vh;
                padding: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .banner-content {
                text-align: center;
                align-items: center;
                margin-left: 0;
                max-width: 100%;
            }

            .banner-logo {
                margin-left: 0;
                height: 100px;
                width: 80px;
            }

            .carousel-indicators {
                bottom: 15px;
            }

            .indicator {
                width: 10px;
                height: 10px;
            }

            .top-product-title {
                font-size: 22px;
            }

            .top-product-header {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 20px;
            }

            .top-product-controls {
                display: none;
            }

            .mobile-nav {
                display: flex;
                gap: 8px;
            }

            .filter-buttons {
                display: none;
            }

            .mobile-only {
                display: flex;
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
                margin-bottom: 20px;
            }

            .filter-btn {
                font-size: 12px;
                padding: 5px 0;
            }

            .top-product-nav {
                gap: 8px;
            }

            .nav-arrow {
                width: 35px;
                height: 35px;
            }

            .nav-arrow i {
                font-size: 12px;
            }

            .top-product-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .new-arrivals-title {
                font-size: 22px;
            }

            .new-arrivals-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .new-arrivals-nav {
                display: none;
            }

            .collections-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .collection-card {
                height: 250px;
                width: 100%;
                margin: 0 auto;
            }

            .collection-overlay {
                position: absolute;
                bottom: -20px;
                left: 50%;
                transform: translateX(-50%);
                padding: 15px;
                width: 200px;
                height: 130px;
                text-align: center;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                align-items: center;
            }

            .collection-title {
                font-size: 16px;
                margin-bottom: 8px;
            }

            .collection-small-text {
                font-size: 10px;
            }

            .collection-shop-btn {
                padding: 8px 20px;
                font-size: 12px;
            }

            .image-gallery-grid {
                display: flex;
                overflow-x: auto;
                gap: 20px;
                padding: 0 20px;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }

            .image-gallery-grid::-webkit-scrollbar {
                display: none;
            }

            .gallery-nav {
                display: none;
            }

            .gallery-image-container {
                flex: 0 0 280px;
                scroll-snap-align: start;
                height: 350px;
                border-radius: 8px;
                overflow: hidden;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            }

            .gallery-middle {
                order: 1;
                height: 350px;
            }

            .left-image {
                order: 2;
                height: 350px;
            }

            .right-image {
                order: 3;
                height: 350px;
            }

            .gallery-middle-bottom {
                display: none;
            }

            .middle-small {
                height: 350px;
            }


            .gallery-image {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.3s ease;
            }

            .gallery-image-container:hover .gallery-image {
                transform: scale(1.05);
            }

            .video-overlay {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                background: rgba(0,0,0,0.3);
                border-radius: 50%;
                width: 60px;
                height: 60px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
            }

            .video-overlay:hover {
                background: rgba(0,0,0,0.5);
                transform: translate(-50%, -50%) scale(1.1);
            }

            .video-icon {
                width: 30px;
                height: 30px;
                object-fit: contain;
            }

            .image-gallery-header {
                text-align: center;
                margin-bottom: 30px;
                padding: 0 20px;
            }

            .image-gallery-title {
                font-size: 22px;
                margin-bottom: 15px;
            }

            .image-gallery-description {
                font-size: 16px;
                line-height: 1.5;
                color: #666;
            }

            .newsletter-title {
                font-size: 22px;
            }

            .newsletter-form {
                flex-direction: column;
                gap: 10px;
            }



            .footer-content {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            .footer-columns {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .footer-column {
                text-align: center;
            }

            .footer-links {
                justify-content: center;
            }

            .contact-info {
                text-align: center;
            }

            .copyright-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .legal-links {
                justify-content: center;
            }

            /* Mobile Product Sliders */
            .top-product-grid {
                display: flex;
                overflow-x: auto;
                gap: 20px;
                padding: 0 20px;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }

            .top-product-grid::-webkit-scrollbar {
                display: none;
            }

            .product-card {
                flex: 0 0 280px;
                scroll-snap-align: start;
            }

            .gift-hampers-title {
                font-size: 22px;
            }

            .gift-hampers-grid {
                display: flex;
                overflow-x: auto;
                gap: 20px;
                padding: 0 20px;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }

            .gift-hampers-grid::-webkit-scrollbar {
                display: none;
            }

            .gift-hamper-card {
                flex: 0 0 280px;
                scroll-snap-align: start;
            }

            .new-arrivals-nav {
                display: none;
            }

            /* Mobile arrow positioning */
            .top-product-nav {
                position: relative;
                top: auto;
                left: auto;
                right: auto;
                transform: none;
                display: flex;
                justify-content: center;
                gap: 20px;
                margin-top: 20px;
            }

            .gift-hampers-nav {
                position: relative;
                top: auto;
                left: auto;
                right: auto;
                transform: none;
                display: flex;
                justify-content: center;
                gap: 20px;
                margin-top: 20px;
            }

            /* Mobile arrow button styling */
            .top-product-nav .nav-arrow,
            .gift-hampers-nav .gift-hampers-arrow {
                width: 50px;
                height: 50px;
                border: 2px solid #8C4F47;
                background: white;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: all 0.3s ease;
                border-radius: 50%;
                box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            }

            .top-product-nav .nav-arrow:hover,
            .gift-hampers-nav .gift-hampers-arrow:hover {
                background-color: #8C4F47;
                color: white;
                transform: scale(1.05);
            }

            .top-product-nav .nav-arrow i,
            .gift-hampers-nav .gift-hampers-arrow i {
                font-size: 18px;
                color: #8C4F47;
            }

            .top-product-nav .nav-arrow:hover i,
            .gift-hampers-nav .gift-hampers-arrow:hover i {
                color: white;
            }
        }
   
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Top Bar */
        .top-bar {
            background-color: #8C4F47;
            color: white;
            text-align: center;
            padding: 8px 0;
            position: relative;
        }

        .banner-text {
            font-size: 14px;
            font-weight: 500;
        }

        .banner-arrows {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 12px;
            cursor: pointer;
        }

        .banner-arrow-left {
            left: 20px;
        }

        .banner-arrow-right {
            right: 20px;
        }

            /* Banner Slider */
        .banner {
            position: relative;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            padding: 40px;
        }

        .banner-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            transition: transform 1.5s cubic-bezier(0.4, 0.0, 0.2, 1);
            will-change: transform;
        }

        .banner-slide {
            min-width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .banner-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right,
                rgba(255, 255, 255, 0.8) 3%,    /* left bilkul white */
                rgba(255, 255, 255, 0.1) 10%,   /* 10% tak halki safedi */
                transparent 30%);               /* 30% tak fade ho jaye */
        }

        .banner-slide-1 {
            background-image: url('assets/images/banner (2).png');
        }

        .banner-slide-2 {
            background-image: url('assets/images/banner3.png');
        }

        .banner-slide-3 {
            background-image: url('assets/images/banner4.png');
        }

        .banner-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
            margin-left: 8%;
        }

        .banner-logo {
            margin-left: 12%;
            height: 150px;
            width: 130px;
        }
        @media (max-width: 768px) {
            .banner-logo {
                visibility: hidden;
            }
        }
@media (max-width:768px) {
    
}
        .shop-now-btn {
            margin-bottom: 70%;
            background-color: #8C4F47;
            color: white;
            padding: 17px 45px;
            border: none;
          
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .shop-now-btn:hover {
            background-color: #7a433c;
        }

        /* Carousel Indicators */
        .carousel-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 3;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.8);
        }

        .indicator:hover {
            background-color: rgba(255, 255, 255, 0.8);
            transform: scale(1.2);
        }

        .indicator.active {
            background-color: #8C4F47;
            border-color: #8C4F47;
            transform: scale(1.1);
        }

        /* Top Product Section */
        .top-product {
            background-color: white;
            padding: 60px 0;
        }

        .top-product-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .top-product-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

            .top-product-title {
                font-size: 40px;
                font-weight: bold;
                color: #8C4F47;
                margin: 0;
            }

        .top-product-controls {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .filter-buttons {
            display: flex;
            gap: 30px;
        }

        .mobile-only {
            display: none;
        }

        .mobile-nav {
            display: none;
        }

        .filter-btn {
            background: transparent;
            border: none;
            color: #006E5F;
            padding: 0;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
        }

        .filter-btn:hover {
            color: #8C4F47;
        }

        .filter-btn.active {
            color: #8C4F47;
        }

        .filter-btn.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #8C4F47;
        }

        .top-product-nav {
            display: flex;
            gap: 10px;
        }

        .nav-arrow {
            width: 40px;
            height: 40px;
            border: 1px solid #8C4F47;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-arrow:hover {
            background-color: #8C4F47;
            color: white;
        }

        .nav-arrow i {
            color: #8C4F47;
            font-size: 14px;
        }

        .nav-arrow:hover i {
            color: white;
        }

        .top-product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .product-card {
            background: white;
            /* border-radius: 8px; */
            padding: 20px;
            text-align: center;
            /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
            transition: transform 0.3s ease, opacity 0.3s ease;
            will-change: transform, opacity;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            opacity: 1;
        }

        .product-card:hover {
            transform: translateY(-5px) translateZ(0);
        }

        .product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            /* border-radius: 8px; */
            margin-bottom: 15px;
        }

        .product-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

        .shop-now-link {
            color: #8C4F47;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
        }

        .shop-now-link:hover {
            text-decoration: underline;
        }

        /* New Arrivals Section */
        .new-arrivals {
            background-color: #E8F4F4;
            padding: 60px 0;
        }

        .new-arrivals-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .new-arrivals-header {
            text-align: center;
            margin-bottom: 40px;
        }

            .new-arrivals-title {
                font-size: 40px;
                font-weight: bold;
                color: #8C4F47;
                margin: 0;
            }

        .new-arrivals-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
        }

        .new-arrivals-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
        }

        .new-arrivals-nav-left {
            left: -60px;
        }

        .new-arrivals-nav-right {
            right: -60px;
        }

        .new-arrivals-arrow {
            width: 40px;
            height: 40px;
            border: 1px solid #8C4F47;
            background: #E8F4F4;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .new-arrivals-arrow:hover {
            background-color: #8C4F47;
            color: white;
        }

        .new-product-card {
            background: white;
            border: none;
            padding: 0;
            box-shadow: none;
            transition: transform 0.3s ease, opacity 0.3s ease;
            will-change: transform, opacity;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            opacity: 1;
        }

        .new-product-card:hover {
            transform: translateY(-5px) translateZ(0);
        }

        .new-product-image {
            width: 100%;
            height: 270px;
            object-fit: cover;
            /* border-radius: 8px; */
            margin-bottom: 0;
         
        }

        .new-product-content {
            padding: 20px;
        }

        .new-product-price {
            font-size: 18px;
            font-weight: 500;
            color: #006e5f;
            margin-bottom: 5px;
        }

        .new-product-price .strikethrough {
            text-decoration: line-through;
            color: #999;
            font-size: 14px;
            margin-right: 5px;
            margin-left: 10px;
        }

        .new-product-title {
            font-size: 16px;
            font-weight: 600;
            color: #8c4f47 !important;
            margin-bottom: 15px;
        }

        .new-product-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .new-product-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 0;
            text-align: left;
        }

        .product-icons {
            display: flex;
            gap: 15px;
        }

        .product-icon {
            font-size: 18px;
            color: #006e5f;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .product-icon:hover {
            color: #7a433c;
        }

        .view-all-btn {
            text-align: center;
            margin-top: 40px;
        }
        

        .view-all-button {
            background-color: #E8F4F4;
            color: #8C4F47;
            border: 1px solid #8C4F47;
            padding: 12px 30px;
            /* border-radius: 5px; */
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .view-all-button:hover {
            background-color: #8C4F47;
            color: white;
        }

        /* Special Collections Section */
        .special-collections {
            background-color: white;
            padding: 60px 0;
        }

        .special-collections-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .collections-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .collection-card {
            position: relative;
            height: 500px;
            width: 80%;
            margin: 0 auto;
            overflow: visible;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            /* box-shadow: 0 8px 25px rgba(0,0,0,0.15); */
            transition: all 0.3s ease;
        }

        .collection-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.2);
        }

        .festive-collection {
            background-image: url('assets/images/card1.png');
        }

        .limited-edition {
            background-image: url('assets/images/card2.png');
        }

        .collection-overlay {
            position: absolute;
            bottom: -20px;
            right: -60px;
            background-color: #F8F5EF;
            padding: 40px;
            width: 330px;
            height: 230px;
            text-align: center;
            /* box-shadow: 0 4px 15px rgba(0,0,0,0.1); */
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
        }

        .collection-small-text {
            font-size: 12px;
            color: #A05245;
            margin-bottom: 10px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .collection-title {
            font-size: 30px;
            color: #2F706B;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .collection-shop-btn {
            background-color: #A05245;
            color: white;
            padding: 12px 30px;
            border: none;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .collection-shop-btn:hover {
            background-color: #8B3A3A;
        }

        /* Promotional Banners Section */
        .promotional-banners {
            background-color: white;
            padding: 60px 0;
        }

        .promotional-banners-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .banners-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }

        .banner-card {
            position: relative;
            background-color: #F5F5DC;
            border: 1px solid #D2B48C;
            /* border-radius: 8px; */
            padding: 30px;
            text-align: center;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .banner-small-text {
            font-size: 12px;
            color: #8B4513;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .banner-title {
            font-size: 24px;
            color: #20B2AA;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .banner-shop-btn {
            background-color: #8C4F47;
            color: white;
            padding: 12px 30px;
            border: none;
            /* border-radius: 5px; */
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
            align-self: center;
        }

        .banner-shop-btn:hover {
            background-color: #7a433c;
        }

        /* Gift Hampers Section */
        .gift-hampers {
            background-color: #E0F7FA;
            padding: 60px 0;
        }

        .gift-hampers-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .gift-hampers-header {
            text-align: center;
            margin-bottom: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

            .gift-hampers-title {
                font-size: 40px;
                font-weight: bold;
                color: #8C4F47;
                margin: 0;
            }

        .gift-hampers-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            margin-bottom: 40px;
        }

        .gift-hampers-nav {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 10;
            display: flex;
            gap: 10px;
        }

        .gift-hampers-nav-left {
            display: none;
        }

        .gift-hampers-nav-right {
            display: none;
        }

        .gift-hampers-arrow {
            width: 40px;
            height: 40px;
            border: 1px solid #8C4F47;
            background: #E0F7FA;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gift-hampers-arrow:hover {
            background-color: #8C4F47;
            color: white;
        }

        .gift-hamper-card {
            background: white;
            border: none;
            padding: 0;
            box-shadow: none;
            transition: transform 0.3s ease;
            text-align: center;
            will-change: transform;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            opacity: 1;
        }

        .gift-hamper-card:hover {
            transform: translateY(-5px) translateZ(0);
        }

        .gift-hamper-image {
             width: 100%;
            height: 270px;
            object-fit: cover;
            /* border-radius: 8px; */
            margin-bottom: 0;
        }

        .gift-hamper-content {
            padding: 20px;
        }

        .gift-hamper-price {
            font-size: 18px;
            font-weight: 500;
            color: #006e5f;
            margin-bottom: 5px;
            text-align: start;
        }

        .gift-hamper-price .strikethrough {
            text-decoration: line-through;
            color: #999;
            font-size: 14px;
            margin-right: 5px;
            margin-left: 10px;
        }

        .gift-hamper-title {
            font-size: 16px;
            font-weight: 500;
            color: brown;
            margin-bottom: 15px;
            text-align: start;
        }

        .gift-hamper-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .gift-hamper-title {
            font-size: 16px;
            font-weight: 500;
            color: brown;
            margin-bottom: 0;
            text-align: left;
        }

        .gift-hamper-icons {
            display: flex;
            gap: 15px;
        }

        .gift-hamper-icon {
            font-size: 18px;
            color: #8C4F47;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .gift-hamper-icon:hover {
            color: #7a433c;
        }

        .gift-hampers-view-all {
            text-align: center;
        }

        .gift-hampers-view-all-btn {
            background-color: transparent;
            color: #8C4F47;
            border: 1px solid #8C4F47;
            padding: 12px 30px;
            /* border-radius: 5px; */
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gift-hampers-view-all-btn:hover {
            background-color: #8C4F47;
            color: white;
        }

        /* Image Gallery Section */
        .image-gallery {
            background-color: white;
            padding: 60px 0;
          
        }

        .image-gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .image-gallery-header {
            text-align: center;
            margin-bottom: 40px;
        }

            .image-gallery-title {
                font-size: 40px;
                font-weight: bold;
                color: #8C4F47;
                margin: 0 0 15px 0;
            }

        .image-gallery-description {
            font-size: 16px;
            color: #006E5F;
            margin: 0;
            max-width: 600px;
            margin: 0 auto;
        }

        .image-gallery-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.5fr;
            gap: 10px;
            border-radius: 0px !important;
            position: relative;
            align-items: stretch;
        }

        .gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
        }

        .gallery-nav-left {
            left: -60px;
        }

        .gallery-nav-right {
            right: -60px;
        }

        .gallery-arrow {
            width: 40px;
            height: 40px;
            border: 1px solid #8C4F47;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-arrow:hover {
            background-color: #8C4F47;
            color: white;
        }

        .gallery-image-container {
            position: relative;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .gallery-image-container:hover {
            transform: translateY(-5px);
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .play-button:hover {
            background-color: rgba(255, 255, 255, 1);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .play-button i {
            color: #8C4F47;
            font-size: 18px;
        }

        .video-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-overlay:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-icon {
            width: 200px;
            height: 200px;
            object-fit: contain;
        }

        .left-image {
            height: 500px;
        }

        .gallery-middle {
            display: flex;
            flex-direction: column;
            gap: 10px;
            height: 500px;
        }

        .middle-large {
            height: 240px;
        }

        .gallery-middle-bottom {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            flex: 1;
        }

        .middle-small {
            height: 100%;
        }

        .right-image {
            height: 500px;
        }

        /* Newsletter Sign Up Section */
        .newsletter-signup {
            padding: 60px 0;
        }

        .newsletter-container {
            max-width: 600px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .newsletter-title {
            font-size: 40px;
            font-weight: bold;
            color: #8C4F47;
            margin: 0 0 15px 0;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .newsletter-description {
            font-size: 18px;
            font-weight: 400;
            color: #006E5F;
            margin: 0 0 30px 0;
        }

        .newsletter-form {
            display: flex;
            gap: 0;
            max-width: 400px;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            padding: 20px 40px;
            border: 1px solid rgba(128, 128, 128, 0.37);
            /* border-radius: 5px 0 0 5px; */
            font-size: 14px;
            outline: none;
            text-align: center;
        }

        .newsletter-input::placeholder {
            color: #999;
        }

        .newsletter-submit {
            background-color: #a75e55;
            color: white;
            border: none;
            padding: 25px 42px;
       
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .newsletter-submit:hover {
            background-color: #7a433c;
        }

      
        /* Products Section Styles */
        .products-section {
       
          padding: 60px 0;
        }

        .products-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .products-layout {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 40px;
            align-items: start;
        }

        .products-sidebar {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.048);
            position: sticky;
            top: 100px;
        }

        .sidebar-header {
            display: none;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .sidebar-close {
            background: none;
            border: none;
            font-size: 20px;
            color: #666;
            cursor: pointer;
            padding: 5px;
        }

        .sidebar-section {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .sidebar-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .sidebar-title {
            font-size: 18px;
            font-weight: 600;
            color: #8C4F47;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .sidebar-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidebar-list li {
            margin-bottom: 8px;
        }

        .sidebar-link {
            color: #666;
            text-decoration: none;
            font-size: 14px;
            padding: 8px 0;
            display: block;
            transition: color 0.3s ease;
            position: relative;
        }

        .sidebar-link:hover,
        .sidebar-link.active {
            color: #8C4F47;
        }

        .sidebar-link.active::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 4px;
            background-color: #8C4F47;
            border-radius: 50%;
        }

        .price-range {
            margin-top: 15px;
        }

        .price-slider {
            width: 100%;
            height: 6px;
            border-radius: 3px;
            background: #ddd;
            outline: none;
            -webkit-appearance: none;
        }

        .price-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #8C4F47;
            cursor: pointer;
        }

        .price-slider::-moz-range-thumb {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #8C4F47;
            cursor: pointer;
            border: none;
        }

        .price-values {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
            font-size: 12px;
            color: #666;
        }

        .sort-select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background: white;
            font-size: 14px;
            color: #666;
            outline: none;
        }

        .filter-options {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .filter-checkbox {
            display: flex;
            align-items: center;
            cursor: pointer;
            font-size: 14px;
            color: #666;
        }

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

        .checkmark {
            width: 18px;
            height: 18px;
            border: 2px solid #ddd;
            border-radius: 3px;
            margin-right: 10px;
            position: relative;
            transition: all 0.3s ease;
        }

        .filter-checkbox input[type="checkbox"]:checked + .checkmark {
            background-color: #8C4F47;
            border-color: #8C4F47;
        }

        .filter-checkbox input[type="checkbox"]:checked + .checkmark::after {
            content: '';
            position: absolute;
            left: 5px;
            top: 2px;
            width: 4px;
            height: 8px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .products-main {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .mobile-filter-btn {
            display: none;
        }

        .products-header {
            padding: 30px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .products-title {
            font-size: 28px;
            font-weight: bold;
            color: #8C4F47;
            margin: 0;
        }

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

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            
        }

        .product-card {
            background: white;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s ease, opacity 0.3s ease;
            will-change: transform, opacity;
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            opacity: 1;
        }

        .product-card:hover {
            transform: translateY(-5px) translateZ(0);
        }

        .product-image {
            width: 100%;
            height: 270px;
            object-fit: cover;
            margin-bottom: 15px;
        }

        .product-title {
            
            font-size: 14px;
            font-weight: 600;
            color: #8B4513;
            margin-bottom: 10px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .shop-now-link {
            color: #8C4F47;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
        }

        .shop-now-link:hover {
            text-decoration: underline;
        }

        /* Pagination Styles */
        .sidebar-pagination,
        .products-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            padding: 20px;
            border-top: 1px solid #eee;
            margin-top: 20px;
        }

        .pagination-btn {
            background: #8C4F47;
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pagination-btn:hover:not(:disabled) {
            background: #7a433c;
            transform: translateY(-1px);
        }
        
        .pagination-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            opacity: 0.6;
        }

        .pagination-info {
            font-size: 14px;
            color: #666;
            font-weight: 500;
        }

        .pagination-numbers {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .pagination-number {
            background: white;
            color: #8C4F47;
            border: 1px solid #ddd;
            padding: 8px 12px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            font-weight: 500;
        }

        .pagination-number:hover {
            background: #8C4F47;
            color: white;
            border-color: #8C4F47;
        }

        .pagination-number.active {
            background: #8C4F47;
            color: white;
            border-color: #8C4F47;
        }

        .pagination-dots {
            color: #666;
            font-size: 14px;
            padding: 0 5px;
        }

        .festive-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(210, 243, 243, 0.74);
            z-index: 1;
        }

        .festive-banner-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .festive-subtitle {
            font-size: 16px;
            font-weight: 500;
            color: #8C4F47;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            font-family: 'Arial', sans-serif;
        }

        .festive-title {
            font-size: 50px;
            font-weight: 500;
            color: #008080;
            line-height: 1.1;
            margin-bottom: 30px;
            font-family: 'Georgia', serif;
        }

        .festive-title div {
            display: block;
        }

        .festive-shop-btn {
            background-color: #A0522D;
            color: white;
            border: none;
            padding: 15px 35px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Arial', sans-serif;
        }

        .festive-shop-btn:hover {
            background-color: #8B4513;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(160, 82, 45, 0.3);
        }


        /* Mobile scroll optimization */
        @media (max-width: 768px) {
            * {
                -webkit-overflow-scrolling: touch;
            }
            
            body {
                -webkit-overflow-scrolling: touch;
                overflow-x: hidden;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-container {
                justify-content: space-between;
                align-items: center;
            }

            .nav-links-main {
                display: none;
            }

            .mobile-toggle {
                display: block;
            }

            .logo {
                order: 1;
            }

            .user-actions {
                order: 2;
                display: flex;
                align-items: center;
                gap: 15px;
                 margin-left: 35%;
            }

            .mobile-toggle {
                order: 3;
            }

            .search-icon-mobile {
                display: block;
            }

            .desktop-only {
                display: none;
            }

            .banner {
                height: 50vh;
                padding: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .banner-content {
                text-align: center;
                align-items: center;
                margin-left: 0;
                max-width: 100%;
            }

            .banner-logo {
                margin-left: 0;
                height: 100px;
                width: 80px;
            }

            .carousel-indicators {
                bottom: 15px;
            }

            .indicator {
                width: 10px;
                height: 10px;
            }

            .top-product-title {
                font-size: 22px;
            }

            .top-product-header {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 20px;
            }

            .top-product-controls {
                display: none;
            }

            .mobile-nav {
                display: flex;
                gap: 8px;
            }

            .filter-buttons {
                display: none;
            }

            .mobile-only {
                display: flex;
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
                margin-bottom: 20px;
            }

            .filter-btn {
                font-size: 12px;
                padding: 5px 0;
            }

            .top-product-nav {
                gap: 8px;
            }

            .nav-arrow {
                width: 35px;
                height: 35px;
            }

            .nav-arrow i {
                font-size: 12px;
            }

            .top-product-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .new-arrivals-title {
                font-size: 22px;
            }

            .new-arrivals-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .new-arrivals-nav {
                display: none;
            }

            .collections-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .collection-card {
                height: 250px;
                width: 100%;
                margin: 0 auto;
            }

            .collection-overlay {
                position: absolute;
                bottom: -20px;
                left: 50%;
                transform: translateX(-50%);
                padding: 15px;
                width: 200px;
                height: 130px;
                text-align: center;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                align-items: center;
            }

            .collection-title {
                font-size: 16px;
                margin-bottom: 8px;
            }

            .collection-small-text {
                font-size: 10px;
            }

            .collection-shop-btn {
                padding: 8px 20px;
                font-size: 12px;
            }

            .image-gallery-grid {
                display: flex;
                overflow-x: auto;
                gap: 20px;
                padding: 0 20px;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }

            .image-gallery-grid::-webkit-scrollbar {
                display: none;
            }

            .gallery-nav {
                display: none;
            }

            .gallery-image-container {
                flex: 0 0 280px;
                scroll-snap-align: start;
                height: 350px;
                border-radius: 8px;
                overflow: hidden;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            }

            .gallery-middle {
                order: 1;
                height: 350px;
            }

            .left-image {
                order: 2;
                height: 350px;
            }

            .right-image {
                order: 3;
                height: 350px;
            }

            .gallery-middle-bottom {
                display: none;
            }

            .middle-small {
                height: 350px;
            }


            .gallery-image {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.3s ease;
            }

            .gallery-image-container:hover .gallery-image {
                transform: scale(1.05);
            }

            .video-overlay {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                background: rgba(0,0,0,0.3);
                border-radius: 50%;
                width: 60px;
                height: 60px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
            }

            .video-overlay:hover {
                background: rgba(0,0,0,0.5);
                transform: translate(-50%, -50%) scale(1.1);
            }

            .video-icon {
                width: 30px;
                height: 30px;
                object-fit: contain;
            }

            .image-gallery-header {
                text-align: center;
                margin-bottom: 30px;
                padding: 0 20px;
            }

            .image-gallery-title {
                font-size: 22px;
                margin-bottom: 15px;
            }

            .image-gallery-description {
                font-size: 16px;
                line-height: 1.5;
                color: #666;
            }

            .newsletter-title {
                font-size: 22px;
            }

            .newsletter-form {
                flex-direction: column;
                gap: 10px;
            }



            .footer-content {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            .footer-columns {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .footer-column {
                text-align: center;
            }

            .footer-links {
                justify-content: center;
            }

            .contact-info {
                text-align: center;
            }

            .copyright-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .legal-links {
                justify-content: center;
            }

            /* Mobile Product Sliders */
            .top-product-grid {
                display: flex;
                overflow-x: auto;
                gap: 20px;
                padding: 0 20px;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }

            .top-product-grid::-webkit-scrollbar {
                display: none;
            }

            .product-card {
                flex: 0 0 280px;
                scroll-snap-align: start;
            }

            .gift-hampers-title {
                font-size: 22px;
            }

            .gift-hampers-grid {
                display: flex;
                overflow-x: auto;
                gap: 20px;
                padding: 0 20px;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }

            .gift-hampers-grid::-webkit-scrollbar {
                display: none;
            }

            .gift-hamper-card {
                flex: 0 0 280px;
                scroll-snap-align: start;
            }

            .new-arrivals-nav {
                display: none;
            }

            /* Mobile arrow positioning */
            .top-product-nav {
                position: relative;
                top: auto;
                left: auto;
                right: auto;
                transform: none;
                display: flex;
                justify-content: center;
                gap: 20px;
                margin-top: 20px;
            }

            .gift-hampers-nav {
                position: relative;
                top: auto;
                left: auto;
                right: auto;
                transform: none;
                display: flex;
                justify-content: center;
                gap: 20px;
                margin-top: 20px;
            }

            /* Mobile arrow button styling */
            .top-product-nav .nav-arrow,
            .gift-hampers-nav .gift-hampers-arrow {
                width: 50px;
                height: 50px;
                border: 2px solid #8C4F47;
                background: white;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: all 0.3s ease;
                border-radius: 50%;
                box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            }

            .top-product-nav .nav-arrow:hover,
            .gift-hampers-nav .gift-hampers-arrow:hover {
                background-color: #8C4F47;
                color: white;
                transform: scale(1.05);
            }

            .top-product-nav .nav-arrow i,
            .gift-hampers-nav .gift-hampers-arrow i {
                font-size: 18px;
                color: #8C4F47;
            }

            .top-product-nav .nav-arrow:hover i,
            .gift-hampers-nav .gift-hampers-arrow:hover i {
                color: white;
            }

            /* Products Section Mobile Styles */
            .products-layout {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .products-sidebar {
                position: static;
                order: 2;
                padding: 20px;
            }

            .products-main {
                order: 1;
            }

            .products-header {
                padding: 20px;
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .products-title {
                font-size: 24px;
            }

            .products-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 20px;
            }

            .products-layout {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .products-sidebar {
                display: block;
                position: fixed;
                top: 0;
                left: -100%;
                width: 300px;
                height: 100vh;
                background: white;
                z-index: 1000;
                box-shadow: 2px 0 10px rgba(0,0,0,0.1);
                padding: 20px;
                transition: left 0.3s ease;
                overflow-y: auto;
            }

            .products-sidebar.active {
                left: 0;
            }

            .products-main {
                width: 100%;
                position: relative;
            }

            .mobile-filter-btn {
                display: flex !important;
                align-items: center;
                gap: 8px;
                background: #8C4F47;
                color: white;
                border: none;
                padding: 12px 20px;
                border-radius: 5px;
                margin: 20px;
                cursor: pointer;
                font-size: 14px;
                font-weight: 500;
            }

            .mobile-filter-overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0,0,0,0.5);
                z-index: 999;
            }

            .mobile-filter-overlay.active {
                display: block;
            }

            .sidebar-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 20px;
                padding-bottom: 15px;
                border-bottom: 1px solid #eee;
            }

            /* Mobile Festive Banner */
            .festive-banner {
                padding: 60px 15px;
                margin: 30px 0;
            }

            .festive-title {
                font-size: 36px;
            }

            .festive-subtitle {
                font-size: 11px;
                letter-spacing: 1.5px;
            }

            .festive-shop-btn {
                padding: 12px 30px;
                font-size: 13px;
            }
        }
 /* Products Banner Styles */
     

        .products-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right,
                rgba(250, 249, 247, 0.349) 0%,
                rgba(250, 249, 247, 0.315) 30%,
                rgba(250, 249, 247, 0.5) 70%,
                rgba(250, 249, 247, 0.8) 100%);
            z-index: 1;
        }

        .products-banner-content {
            position: relative;
            z-index: 3;
            max-width: 1200px;
            margin: 0 auto;
        }

        .products-banner-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #2c2c2c;
            margin: 0 0 20px 0;
            letter-spacing: -1px;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 1rem;
            color: #666;
        }

        .breadcrumb-link {
            display: flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            color: #666;
            transition: color 0.3s ease;
        }

        .breadcrumb-link:hover {
            color: #8C4F47;
        }

        .breadcrumb-link i {
            font-size: 0.9rem;
        }

        .breadcrumb-separator {
            color: #999;
            font-weight: 500;
        }

        .breadcrumb-current {
            color: #2c2c2c;
            font-weight: 500;
        }

        /* Decorative Elements */
        .products-banner-decoration {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 2;
        }
        .decoration-flowers-top {
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            height: 40px;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><circle cx="10" cy="10" r="2" fill="white" opacity="0.8"/><circle cx="20" cy="8" r="1.5" fill="white" opacity="0.6"/><circle cx="30" cy="12" r="1.8" fill="white" opacity="0.7"/><circle cx="40" cy="9" r="1.2" fill="white" opacity="0.5"/><circle cx="50" cy="11" r="1.6" fill="white" opacity="0.8"/><circle cx="60" cy="7" r="1.3" fill="white" opacity="0.6"/><circle cx="70" cy="13" r="1.4" fill="white" opacity="0.7"/><circle cx="80" cy="10" r="1.1" fill="white" opacity="0.5"/><circle cx="90" cy="8" r="1.7" fill="white" opacity="0.8"/></svg>');
            background-repeat: repeat-x;
            background-size: 100px 20px;
        }

        .decoration-candle {
            position: absolute;
            bottom: 30px;
            left: 10%;
            width: 20px;
            height: 30px;
            background: linear-gradient(to bottom, #f8f8f8 0%, #e8e8e8 100%);
            border-radius: 2px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .decoration-candle::before {
            content: '';
            position: absolute;
            top: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 4px;
            background: #ff6b6b;
            border-radius: 1px;
        }

        .decoration-bottle {
            position: absolute;
            bottom: 20px;
            right: 10%;
            width: 15px;
            height: 25px;
            background: linear-gradient(to bottom, rgba(255,255,255,0.9) 0%, rgba(240,240,240,0.8) 100%);
            border-radius: 2px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }

        .decoration-bottle::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 2px;
            background: #8B4513;
            border-radius: 1px;
        }

        .decoration-flowers-bottom {
            position: absolute;
            bottom: 10px;
            left: 5%;
            width: 60px;
            height: 20px;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 20"><circle cx="5" cy="10" r="1.5" fill="white" opacity="0.7"/><circle cx="15" cy="8" r="1.2" fill="white" opacity="0.5"/><circle cx="25" cy="12" r="1.3" fill="white" opacity="0.6"/><circle cx="35" cy="9" r="1.1" fill="white" opacity="0.8"/><circle cx="45" cy="11" r="1.4" fill="white" opacity="0.7"/><circle cx="55" cy="7" r="1.0" fill="white" opacity="0.5"/></svg>');
            background-repeat: no-repeat;
            background-size: contain;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .products-banner {
                padding: 60px 15px;
            }

            .products-banner-title {
                font-size: 2.5rem;
            }

            .breadcrumb {
                font-size: 0.9rem;
            }

            .decoration-candle,
            .decoration-bottle {
                display: none;
            }
        }

/* Product Card Link Styles */
.product-card-link {
    text-decoration: none !important;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.product-card-link:hover {
    transform: translateY(-5px);
}

.product-card-link:hover .new-product-card {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Authentication Page Styles */
.auth-section {
    padding: 100px 0;
  
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.auth-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 70%;
    animation-delay: 1s;
}

.shape-5 {
    width: 90px;
    height: 90px;
    top: 10%;
    left: 50%;
    animation-delay: 3s;
}

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

.auth-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.auth-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    padding: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #8C4F47, #A3503E, #006E5F);
    border-radius: 25px 25px 0 0;
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 5px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.auth-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px;
    border: none;
    background: transparent;
    border-radius: 12px;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.auth-tab.active {
    background: white;
    color: #8C4F47;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.auth-tab i {
    font-size: 1.1rem;
}

.auth-tab span {
    font-size: 0.95rem;
}

.auth-form {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.auth-form.active {
    display: block;
}

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

.auth-header {
    text-align: center;
    margin-bottom: 25px;
}

.auth-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8C4F47, #A3503E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 10px 30px rgba(140, 79, 71, 0.3);
    animation: pulse 2s infinite;
}

.auth-icon i {
    font-size: 1.5rem;
    color: white;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.auth-header h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 700;
    background: linear-gradient(135deg, #8C4F47, #A3503E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-header p {
    color: #7f8c8d;
    font-size: 1rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

/* Floating Label Styles */
.floating-label {
    position: relative;
    margin-bottom: 5px;
}

.floating-label input {
    width: 100%;
    padding: 16px 15px 12px 50px;
    border: 2px solid #e1e8ed;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(248, 249, 250, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.floating-label input:focus {
    outline: none;
    border-color: #8C4F47;
    background: white;
    box-shadow: 0 0 0 4px rgba(140, 79, 71, 0.1);
    transform: translateY(-2px);
}

.floating-label input:focus + label,
.floating-label input:not(:placeholder-shown) + label {
    transform: translateY(-25px) scale(0.85);
    color: #8C4F47;
    font-weight: 600;
}

.floating-label label {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    color: #7f8c8d;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
    background: white;
    padding: 0 5px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #bdc3c7;
    z-index: 3;
    transition: color 0.3s ease;
}

.floating-label input:focus ~ .input-icon {
    color: #8C4F47;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8C4F47, #A3503E);
    transition: width 0.3s ease;
    border-radius: 0 0 15px 15px;
}

.floating-label input:focus ~ .input-border {
    width: 100%;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #bdc3c7;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
    z-index: 3;
}

.password-toggle:hover {
    color: #8C4F47;
}

/* Error Message Styles */
.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.password-toggle {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #bdc3c7;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #4ecdc4;
}

.password-strength {
    margin-top: 8px;
}

.strength-bar {
    height: 4px;
    background: #e1e8ed;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 5px;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-text {
    font-size: 0.85rem;
    color: #7f8c8d;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #2c3e50;
}

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

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e1e8ed;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

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

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

.forgot-password {
    color: #8C4F47;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #A3503E;
}

.terms-link {
    color: #8C4F47;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

.auth-btn {
    background: linear-gradient(135deg, #8C4F47, #A3503E);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(140, 79, 71, 0.4);
}

.auth-btn:active {
    transform: translateY(-1px);
}

.auth-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-text {
    transition: all 0.3s ease;
}

.btn-loader {
    display: none;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-success {
    display: none;
    align-items: center;
    justify-content: center;
    animation: successPulse 0.6s ease-in-out;
}

@keyframes successPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.social-login {
    text-align: center;
    margin: 20px 0;
}

.divider {
    position: relative;
    margin: 15px 0;
}

.divider span {
    background: white;
    padding: 0 20px;
    color: #7f8c8d;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e1e8ed, transparent);
}

.social-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 15px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    flex: 1;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.google-logo,
.facebook-logo {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.social-btn:hover .google-logo,
.social-btn:hover .facebook-logo {
    transform: scale(1.1);
}

.social-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.5s;
}

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

.google-btn:hover {
    border-color: #db4437;
    color: #db4437;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(219, 68, 55, 0.2);
}

.facebook-btn:hover {
    border-color: #3b5998;
    color: #3b5998;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 89, 152, 0.2);
}

.auth-switch {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e1e8ed;
}

.auth-switch p {
    color: #7f8c8d;
    margin: 0;
}

.auth-switch a {
    color: #8C4F47;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-switch a:hover {
    color: #A3503E;
}

.auth-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.auth-image-content {
    text-align: center;
    max-width: 400px;
}

.auth-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    border-radius: 20px;
}

.auth-image-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.auth-image-content p {
    color: #7f8c8d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.feature i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8C4F47, #A3503E);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature span {
    font-weight: 600;
    color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .auth-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }
    
    .auth-wrapper {
        padding: 30px 20px;
    }
    
    .auth-header h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .social-login p::before,
    .social-login p::after {
        display: none;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .auth-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .feature {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .auth-section {
        padding: 50px 0;
    }
    
    .auth-wrapper {
        padding: 20px 15px;
    }
    
    .auth-header h2 {
        font-size: 1.8rem;
    }
    
    .input-group input {
        padding: 12px 12px 12px 40px;
    }
    
    .auth-btn {
        padding: 15px;
    }
}
      