 :root {
            --primary: #2c3e50;
            --secondary: #8a7f6f;
            --accent: #a67c52;
            --light: #f5f3ef;
            --dark: #2b2b2b;
            --gray: #7d879c;
            --border: #e5e5e5;
            --success: #27ae60;
            --danger: #e74c3c;
            --warning: #f39c12;
            --info: #3498db;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header Styles */
        header {
            background-color: var(--primary);
            color: white;
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgb(34, 35, 42);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 35px;
            font-weight: 700;
            color: rgb(198, 178, 65);
            text-decoration: none;
            letter-spacing: 5px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .action-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            color: var(--light);
            cursor: pointer;
            position: relative;
        }

        .action-item i {
            font-size: 18px;
            margin-bottom: 4px;
        }

        .cart-count,
        .wishlist-count {
            background-color: var(--accent);
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            position: absolute;
            top: -8px;
            right: -8px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
            justify-content: center;
            padding: 12px 0;
            background-color: rgba(0, 0, 0, 0.2);
        }

        .nav-links li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 0.5px;
        }

        .nav-links li a:hover {
            color: var(--accent);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            padding: 5px;
            z-index: 1000;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: white;
            transition: all 0.3s;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Categories Dropdown */
        .categories-dropdown {
            position: relative;
            display: inline-block;
        }

        .categories-btn {
            background: none;
            border: none;
            color: white;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 0.5px;
            cursor: pointer;
            padding: 5px 10px;
        }

        .categories-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1;
            border-radius: 4px;
            overflow: hidden;
        }

        .categories-content a {
            color: var(--dark);
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            transition: background-color 0.3s;
        }

        .categories-content a:hover {
            background-color: #f1f1f1;
        }

        .categories-dropdown:hover .categories-content {
            display: block;
        }

        /* Category Display */
        .category-display {
            text-align: center;
            margin: 20px 0;
            padding: 10px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }

        .category-display h3 {
            color: var(--primary);
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
        }

        .category-display .current-category {
            color: var(--accent);
            font-weight: 600;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--accent);
            color: white;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn:hover {
            background-color: var(--secondary);
            transform: translateY(-2px);
        }

        /* Products Section */
        .section-title {
            text-align: center;
            margin: 50px 0 30px;
            position: relative;
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: var(--primary);
        }

        .section-title:after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: var(--accent);
            margin: 15px auto;
        }

        .products {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        .product-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            height: auto;
            max-height: 475px;
        }

        .product-card.expanded {
            max-height: 800px;
            z-index: 10;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .product-image {
            height: 280px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .wishlist-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: hsl(0, 0%, 100%);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 2;
        }

        .wishlist-btn:hover {
            background-color: var(--accent);
            color: white;
        }

        .product-info {
            padding: 15px;
            transition: all 0.3s ease;
        }

        .product-title {
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 16px;
            color: var(--primary);
            cursor: pointer;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .current-price {
            font-weight: 700;
            font-size: 18px;
            color: var(--dark);
        }

        .old-price {
            text-decoration: line-through;
            color: var(--gray);
            font-size: 14px;
        }

        .discount {
            color: var(--accent);
            font-weight: 600;
            font-size: 14px;
            background-color: rgba(166, 124, 82, 0.1);
            padding: 2px 6px;
            border-radius: 3px;
        }

        .product-actions {
            display: flex;
            justify-content: space-between;
        }

        .add-to-cart {
            flex: 1;
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .add-to-cart:hover {
            background-color: var(--secondary);
        }

        /* Product Details Section */
        .product-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            padding: 0 15px;
        }

        .product-card.expanded .product-details {
            max-height: 500px;
            padding: 15px;
            border-top: 1px solid var(--border);
        }

        .product-specs {
            margin-bottom: 15px;
        }

        .specs-title {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--primary);
        }

        .specs-list {
            list-style: none;
        }

        .specs-list li {
            margin-bottom: 5px;
            display: flex;
        }

        .specs-list li span:first-child {
            font-weight: 500;
            min-width: 100px;
            color: var(--gray);
        }

        /* Image Slider Styles */
        .image-slider {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .slider-images {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            flex-shrink: 0;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.8);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 3;
        }

        .slider-btn:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateY(-50%) scale(1.1);
        }

        .slider-prev {
            left: 10px;
        }

        .slider-next {
            right: 10px;
        }

        .slider-dots {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 3;
        }

        .slider-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: rgba(255, 255, 255, 1);
            transform: scale(1.2);
        }

        /* Color Chips Styles */
        .product-colors {
            display: flex;
            gap: 6px;
            margin-bottom: 12px;
            flex-wrap: wrap;
            align-items: center;
        }

        /* Color Picker Styles */
        .color-picker-container {
            margin-bottom: 20px;
        }

        .color-picker-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .color-palette {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 10px;
        }

        .color-option {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.2s ease;
        }

        .color-option:hover {
            transform: scale(1.1);
        }

        .color-option.selected {
            border-color: #333;
            transform: scale(1.1);
        }

        .custom-color-input {
            display: flex;
            gap: 10px;
            align-items: center;
            margin-top: 10px;
        }

        .custom-color-preview {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 1px solid #ddd;
        }

        .custom-color-input input {
            flex: 1;
            padding: 8px 12px;
            border: 1px solid var(--border);
            border-radius: 4px;
        }

        .add-color-btn {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
        }

        .selected-colors {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 15px;
            padding: 10px;
            background-color: #f9f9f9;
            border-radius: 4px;
            min-height: 50px;
        }

        .selected-color-chip {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 5px 10px;
            background-color: white;
            border-radius: 20px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .selected-color-preview {
            width: 16px;
            height: 16px;
            border-radius: 50%;
        }

        .remove-color {
            background: none;
            border: none;
            cursor: pointer;
            color: #999;
            font-size: 14px;
        }

        .remove-color:hover {
            color: var(--danger);
        }

        .color-chip {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 2px solid white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: transform 0.2s ease;
            display: inline-block;
        }

        .color-chip:hover {
            transform: scale(1.1);
        }

        .color-more {
            font-size: 12px;
            color: var(--gray);
            display: flex;
            align-items: center;
            margin-left: 4px;
            font-weight: 500;
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background-color: white;
            border-radius: 8px;
            width: 100%;
            max-width: 500px;
            padding: 30px;
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: var(--gray);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border);
            border-radius: 4px;
            font-size: 16px;
        }

        .form-submit {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            width: 100%;
            font-size: 16px;
            margin-top: 10px;
        }

        /* Auth Tabs */
        .auth-tabs {
            display: flex;
            margin-bottom: 20px;
        }

        .auth-tab {
            flex: 1;
            text-align: center;
            padding: 10px;
            cursor: pointer;
            border-bottom: 2px solid var(--border);
        }

        .auth-tab.active {
            border-bottom: 2px solid var(--accent);
            color: var(--accent);
            font-weight: 600;
        }

        .auth-form {
            display: none;
        }

        .auth-form.active {
            display: block;
        }

        /* Admin Panel Styles */
        .admin-panel {
            display: none;
            padding: 20px 0 50px;
            min-height: calc(100vh - 200px);
        }

        .admin-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border);
        }

        .admin-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            border-bottom: 1px solid var(--border);
            padding-bottom: 10px;
        }

        .admin-tab {
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 4px 4px 0 0;
            background-color: #f5f5f5;
            transition: all 0.3s;
        }

        .admin-tab.active {
            background-color: var(--primary);
            color: white;
        }

        .admin-content {
            display: none;
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }

        .admin-content.active {
            display: block;
        }

        .admin-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .admin-table th,
        .admin-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }

        .admin-table th {
            background-color: #f8f9fa;
            font-weight: 600;
        }

        .admin-table tr:hover {
            background-color: #f8f9fa;
        }

        .btn-sm {
            padding: 6px 12px;
            font-size: 14px;
            border-radius: 4px;
            cursor: pointer;
            border: none;
            margin: 2px;
        }

        .btn-edit {
            background-color: var(--info);
            color: white;
        }

        .btn-delete {
            background-color: var(--danger);
            color: white;
        }

        .btn-sm:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }

        .admin-form {
            max-width: 600px;
            margin: 0 auto;
        }

        /* Skeleton Loading Styles */
        .skeleton-loading {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        .skeleton-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }

        .skeleton-image {
            height: 280px;
            background: #f0f0f0;
            position: relative;
            overflow: hidden;
        }

        .skeleton-image::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            transform: translateX(-100%);
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
            animation: shimmer 1.5s infinite;
        }

        .skeleton-content {
            padding: 15px;
        }

        .skeleton-line {
            height: 12px;
            background: #f0f0f0;
            margin-bottom: 10px;
            border-radius: 4px;
            position: relative;
            overflow: hidden;
        }

        .skeleton-line::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            transform: translateX(-100%);
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
            animation: shimmer 1.5s infinite;
        }

        .skeleton-line.short {
            width: 60%;
        }

        .skeleton-line.medium {
            width: 80%;
        }

        .skeleton-line.long {
            width: 90%;
        }

        .skeleton-button {
            height: 35px;
            background: #f0f0f0;
            border-radius: 4px;
            margin-top: 15px;
            position: relative;
            overflow: hidden;
        }

        .skeleton-button::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            transform: translateX(-100%);
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
            animation: shimmer 1.5s infinite;
        }

        @keyframes shimmer {
            100% {
                transform: translateX(100%);
            }
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            margin-bottom: 20px;
            font-size: 18px;
            color: var(--accent);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #bdbdbd;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: background-color 0.3s;
        }

        .social-links a:hover {
            background-color: var(--accent);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bdbdbd;
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-main {
                flex-wrap: wrap;
            }

            .logo {
                margin-bottom: 0;
            }

            .hamburger {
                display: flex;
                order: 2;
            }

            .header-actions {
                order: 3;
                width: 100%;
                justify-content: center;
                margin-top: 15px;
                display: none;
            }

            .header-actions.mobile-visible {
                display: flex;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                padding: 20px;
                z-index: 99;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin-bottom: 15px;
            }

            .nav-links li:last-child {
                margin-bottom: 0;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .admin-tabs {
                flex-wrap: wrap;
            }
        }

        /*  */
        /* Logo Styles */
        .logo {
            text-align: center;
        }

        .logo-main {
            font-family: 'Playfair Display', serif;
            font-size: 35px;
            font-weight: 700;
            color: rgb(198, 178, 65);
            letter-spacing: 5px;
            line-height: 1;
        }

        .logo-subtitle {
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.8);
            letter-spacing: 10px;
            text-transform: uppercase;
            margin-top: 2px;
            font-weight: 400;
        }

        /* For mobile responsiveness */
        @media (max-width: 768px) {
            .logo-main {
                font-size: 28px;
                letter-spacing: 4px;
            }

            .logo-subtitle {
                font-size: 10px;
                letter-spacing: 7.2px;
            }
        }

        /* Instagram Feed Section - Centered */
        .instagram-feed {
            text-align: center;
            padding: 60px 20px;
            background-color: var(--light);
            margin: 50px 0;
        }

        .instagram-feed h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .instagram-feed h3:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--accent);
            margin: 15px auto;
        }

        .instagram-posts {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto 30px;
            padding: 20px 0;
        }

        /* Individual Instagram Post */
        .instagram-post {
            width: 280px;
            height: 280px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: white;
        }

        .instagram-post:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .instagram-post img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .instagram-post:hover img {
            transform: scale(1.05);
        }

        /* Instagram Follow Button */
        .instagram-feed .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(224, 58, 132, 0.3);
        }

        .instagram-feed .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(224, 58, 132, 0.4);
        }

        .instagram-feed .btn i {
            font-size: 1.2rem;
        }

        /* Instagram Handle */
        .instagram-handle {
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 30px;
            font-weight: 500;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .instagram-feed {
                padding: 40px 15px;
            }

            .instagram-feed h3 {
                font-size: 1.8rem;
            }

            .instagram-posts {
                gap: 15px;
                padding: 15px 0;
            }

            .instagram-post {
                width: calc(50% - 15px);
                height: 180px;
            }
        }

        @media (max-width: 480px) {
            .instagram-post {
                width: 100%;
                max-width: 280px;
                height: 200px;
            }

            .instagram-posts {
                flex-direction: column;
            }
        }

        /* Loading State */
        .instagram-loading {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            padding: 40px 0;
        }

        .instagram-loading .loading-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--accent);
            animation: instagramLoading 1.4s ease-in-out infinite both;
        }

        .instagram-loading .loading-dot:nth-child(1) {
            animation-delay: -0.32s;
        }

        .instagram-loading .loading-dot:nth-child(2) {
            animation-delay: -0.16s;
        }

        @keyframes instagramLoading {

            0%,
            80%,
            100% {
                transform: scale(0.8);
                opacity: 0.5;
            }

            40% {
                transform: scale(1);
                opacity: 1;
            }
        }

        /*  */

        /* Products Section - Responsive Grid */
.products {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns for mobile */
    gap: 15px;
    margin-bottom: 50px;
    padding: 0 10px;
}

/* Product Card - Clean Design */
.product-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Product image */
.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: #f9f9f9;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Clean product info - only basic details */
.product-info {
    padding: 15px;
}

.product-title {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--dark);
    line-height: 1.3;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.current-price {
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
}

.old-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 13px;
}

.discount {
    color: var(--accent);
    font-weight: 600;
    font-size: 12px;
    background-color: rgba(166, 124, 82, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
}

/* Remove colors display from card */
.product-colors {
    display: none;
}

/* Remove actions (Ask for Enquiry button) from card */
.product-actions {
    display: none;
}

/* Image slider - Remove navigation buttons from cards */
.image-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-images {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Remove slider buttons from product cards */
.slider-btn {
    display: none; /* Remove navigation buttons from cards */
}

/* Keep dots for multiple images */
.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

.slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

/* Section title styling */
.section-title {
    text-align: left;
    margin: 30px 0 20px 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary);
    padding-left: 10px;
}

.section-title:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
    margin: 10px 0 0 0;
}

/* Free delivery badge */
.free-delivery {
    color: var(--success);
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
}

/* Rating display */
.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 5px;
}

.rating-stars {
    color: #ffc107;
    font-size: 12px;
}

.rating-value {
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
}

.rating-count {
    font-size: 11px;
    color: var(--gray);
}

/* Responsive Grid Layout */
/* Mobile First - 2 columns (already set above) */

/* Tablets and larger phones */
@media (min-width: 481px) and (max-width: 768px) {
    .products {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on tablets */
        gap: 20px;
        padding: 0 15px;
    }
    
    .product-image {
        height: 220px;
    }
}

/* Small laptops and large tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .products {
        grid-template-columns: repeat(4, 1fr); /* 4 columns on small laptops */
        gap: 25px;
        padding: 0 20px;
    }
    
    .product-image {
        height: 250px;
    }
    
    .product-info {
        padding: 18px;
    }
    
    .product-title {
        font-size: 15px;
    }
    
    .current-price {
        font-size: 17px;
    }
}

/* Desktop and larger screens */
@media (min-width: 1025px) {
    .products {
        grid-template-columns: repeat(5, 1fr); /* 5 columns on desktop */
        gap: 30px;
        padding: 0 25px;
    }
    
    .product-image {
        height: 280px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-title {
        font-size: 16px;
    }
    
    .current-price {
        font-size: 18px;
    }
}

/* For very small screens (below 360px) */
@media (max-width: 360px) {
    .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 8px;
    }
    
    .product-image {
        height: 170px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-title {
        font-size: 13px;
        height: 36px;
    }
    
    .current-price {
        font-size: 15px;
    }
}

/* Product Detail Modal Styles - Keep slider buttons only in modal */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.product-modal.active {
    display: flex;
}

.product-modal-content {
    background-color: white;
    border-radius: 16px;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.product-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-modal-close:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
}

.product-modal-body {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.product-modal-images {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
}

.product-modal-image-slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.product-modal-slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-modal-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Slider buttons ONLY in modal */
.product-modal-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-modal-slider-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.product-modal-slider-prev {
    left: 15px;
}

.product-modal-slider-next {
    right: 15px;
}

.product-modal-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.product-modal-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-modal-slider-dot.active {
    background: rgba(0, 0, 0, 1);
    transform: scale(1.3);
}

.product-modal-info {
    padding: 30px;
    flex: 1;
}

.product-modal-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
}

.product-modal-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product-modal-current-price {
    font-weight: 700;
    font-size: 32px;
    color: var(--dark);
}

.product-modal-old-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 20px;
}

.product-modal-discount {
    color: var(--accent);
    font-weight: 600;
    font-size: 16px;
    background-color: rgba(166, 124, 82, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
}

.product-modal-specs {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.product-modal-specs-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 18px;
}

.product-modal-specs-list {
    list-style: none;
}

.product-modal-specs-list li {
    margin-bottom: 12px;
    display: flex;
    padding: 6px 0;
    font-size: 15px;
}

.product-modal-specs-list li span:first-child {
    font-weight: 500;
    min-width: 120px;
    color: var(--gray);
}

.product-modal-colors {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.product-modal-colors-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 18px;
}

.product-modal-color-chips {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-modal-color-chip {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.product-modal-color-chip:hover {
    transform: scale(1.15);
}

.product-modal-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.product-modal-action-btn {
    flex: 1;
    min-width: 200px;
    padding: 16px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-modal-whatsapp-btn {
    background-color: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.product-modal-whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.product-modal-close-btn {
    background-color: var(--gray);
    color: white;
}

.product-modal-close-btn:hover {
    background-color: var(--dark);
    transform: translateY(-2px);
}

/* Responsive modal adjustments */
@media (max-width: 768px) {
    .product-modal {
        padding: 10px;
    }
    
    .product-modal-content {
        max-height: 95vh;
        border-radius: 12px;
    }
    
    .product-modal-body {
        flex-direction: column;
    }
    
    .product-modal-images {
        height: 300px;
    }
    
    .product-modal-info {
        padding: 20px;
    }
    
    .product-modal-title {
        font-size: 22px;
    }
    
    .product-modal-current-price {
        font-size: 26px;
    }
    
    .product-modal-actions {
        flex-direction: column;
    }
    
    .product-modal-action-btn {
        min-width: 100%;
    }
    
    .product-modal-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (min-width: 769px) {
    .product-modal-body {
        flex-direction: row;
    }
    
    .product-modal-images {
        width: 50%;
        height: 500px;
    }
    
    .product-modal-info {
        width: 50%;
        padding: 40px;
    }
}
