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

        body {
            font-family: 'Arial', 'Helvetica', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        /* CSS Custom Properties for Brand Colors */
        :root {
            --vitaglo-orange: #EF8834;
            --vitaglo-purple: #560A5E;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --border-gray: #e0e0e0;
            --text-dark: #333333;
        }

        /* Header Styles */
        .top-info-bar {
            background: linear-gradient(135deg, var(--vitaglo-purple), #905E95);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }

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

        .phone-number {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }

        .main-header {
            background: white;
            background-color: var(--white);
            border-bottom: 3px solid var(--vitaglo-orange);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 200px 1fr 200px;
            gap: 30px;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            font-size: 32px;
            font-weight: bold;
            text-decoration: none;
        }

        .vita { color: var(--vitaglo-purple); }
        .glo { color: var(--vitaglo-orange); }

        .search-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }

        .search-input {
            flex: 1;
            padding: 12px 15px;
            border: 2px solid var(--vitaglo-orange);
            border-radius: 6px 0 0 6px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            font-size: 16px;
            outline: none;
        }

        .search-input:focus {
            border-color: #d67429;
        }

        .search-button {
            background: var(--vitaglo-orange);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-weight: bold;
            transition: opacity 0.3s;
        }

        .search-button:hover {
            opacity: 0.9;
        }

        .login-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--vitaglo-purple);
            text-decoration: none;
            font-weight: 500;
        }

        .login-icon {
            width: 24px;
            height: 24px;
            fill: var(--vitaglo-purple);
        }

        /* Banner Carousel */
        .carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 30px auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .carousel {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-slide {
            min-width: 100%;
            height: 400px;
            background: linear-gradient(135deg, var(--vitaglo-purple), #905E95);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            position: relative;
        }

        .slide-content {
            text-align: center;
            z-index: 2;
        }

        .slide-content h2 {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 25px;
        }

        .cta-button {
            background: white;
            color: var(--vitaglo-purple);
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .carousel-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: background 0.3s;
        }

        .nav-dot.active {
            background: white;
        }

        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            color: var(--vitaglo-purple);
            transition: background 0.3s;
        }

        .carousel-arrow:hover {
            background: white;
        }

        .carousel-arrow.prev { left: 20px; }
        .carousel-arrow.next { right: 20px; }

        /* Section Titles */
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--vitaglo-purple);
            margin: 50px 0 30px;
            font-weight: bold;
        }

        /* Specials Section */
        .specials-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

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

        .special-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .special-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .special-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .special-content {
            padding: 20px;
        }

        .special-name {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }

        .special-price {
            font-size: 1.1rem;
            color: #e74c3c;
            font-weight: bold;
        }

        .special-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #e74c3c;
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
        }

        /* Brands Section */
        .brands-section {
            background: white;
            padding: 50px 0;
            margin: 50px 0;
        }

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

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .brand-item {
            text-align: center;
            padding: 30px;
            border: 2px solid #f0f0f0;
            border-radius: 12px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .brand-item:hover {
            border-color: #905E95;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .brand-logo {
            width: 120px;
            height: 80px;
            object-fit: contain;
            margin-bottom: 15px;
        }

        .brand-name {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--vitaglo-purple);
        }

        /* Categories Section */
        .categories-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 50px;
        }

        .category-item {
            background: linear-gradient(135deg, var(--vitaglo-purple), #905E95);
            color: white;
            padding: 30px 20px;
            border-radius: 12px;
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .category-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(115, 30, 78, 0.3);
        }

        .category-icon {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .category-name {
            font-size: 1.3rem;
            font-weight: bold;
        }

        /* Coupons Section */
        .coupons-section {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 50px 0;
            margin: 50px 0;
        }

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

        .coupons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .coupon-item {
            background: white;
            border: 3px dashed #905E95;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .coupon-item::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(144, 94, 149, 0.1), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .coupon-discount {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--vitaglo-purple);
            margin-bottom: 10px;
        }

        .coupon-description {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: #555;
        }

        .coupon-code {
            background: var(--vitaglo-purple);
            color: white;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 10px;
        }

        .coupon-expiry {
            font-size: 0.9rem;
            color: #777;
        }

        /* Footer */
        .footer {
            background: var(--vitaglo-purple);
            color: white;
            padding: 40px 0;
            text-align: center;
        }

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

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .footer-links a:hover {
            opacity: 0.8;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                grid-template-columns: 1fr;
                gap: 15px;
                text-align: center;
            }

            .slide-content h2 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .specials-grid,
            .brands-grid,
            .categories-grid,
            .coupons-grid {
                grid-template-columns: 1fr;
            }

            .carousel-arrow {
                display: none;
            }
        }
