        :root {
            /* Skincare-friendly fresh palette */
            --primary-color: #111827; /* koyu lacivert-gri, ana metin */
            --secondary-color: #fb7185; /* yumuşak koral/pembe CTA */
            --accent-color: #38bdf8;   /* ferah mavi, serinlik hissi */
            --nature-color: #22c55e;   /* taze yeşil, içerik vurguları */
            --warning-color: #eab308;  /* sıcak sarı detay */

            --bg-gradient: radial-gradient(circle at top, #fee2e2 0%, #eef2ff 40%, #e0f2fe 75%, #f5f3ff 100%);
            --bg-color: #e5e7eb;

            --card-bg: rgba(255, 255, 255, 0.9);
            --glass-border: 1px solid rgba(255, 255, 255, 0.7);
            --shadow: 0 18px 55px rgba(15, 23, 42, 0.18);
            --glow: 0 0 32px rgba(251, 113, 133, 0.35);
            --white: #ffffff;
            --muted: #6b7280;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-gradient);
            color: var(--primary-color);
            min-height: 100vh;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(20px) saturate(180%);
            background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(253,247,242,0.92));
            box-shadow: 0 4px 30px rgba(64, 1, 1, 0.08);
            padding: 1.1rem 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(217, 195, 169, 0.2);
        }

        .logo {
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            text-decoration: none;
        }

        .logo img {
            height: auto;
            width: 200px;
            display: block;
        }

        .logo span {
            font-weight: 600;
            letter-spacing: 0.25rem;
            font-size: 0.9rem;
            color: var(--primary-color);
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        nav a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--secondary-color);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.95rem 2rem;
            border-radius: 999px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.95rem;
            background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
            color: var(--white);
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 24px rgba(140, 3, 14, 0.3), 0 4px 8px rgba(140, 3, 14, 0.2);
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(140, 3, 14, 0.35), 0 6px 12px rgba(140, 3, 14, 0.25);
        }

        .btn-outline {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.6);
            color: #fff;
            box-shadow: none;
        }

        main {
            flex: 1;
            margin-top: 0;
        }

        section {
            padding: 5rem 10%;
        }

        .section-title {
            font-family: inherit;
            font-size: 3rem;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--primary-color);
            text-shadow: 0 0 15px rgba(232, 67, 147, 0.2);
            letter-spacing: -0.01em;
            line-height: 1.2;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title:hover {
            text-shadow: 0 0 20px rgba(232, 67, 147, 0.4), 0 0 40px rgba(0, 206, 201, 0.2);
            transition: text-shadow 0.3s ease;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            margin: 10px auto 0;
            border-radius: 2px;
            box-shadow: 0 0 10px var(--secondary-color);
        }

        .section-subtitle {
            text-align: center;
            color: var(--muted);
            max-width: 620px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
        }

        .products-layout {
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 3rem;
            align-items: start;
        }

        .product-sidebar {
            background: #fff;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            position: sticky;
            top: 100px;
        }

        .sidebar-title {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
            border-bottom: 2px solid var(--bg-color);
            padding-bottom: 0.5rem;
        }

        .category-list {
            list-style: none;
        }

        .category-list li {
            margin-bottom: 0.5rem;
        }

        .category-list a {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            color: var(--muted);
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .category-list a:hover, .category-list a.active {
            background: var(--bg-color);
            color: var(--secondary-color);
            transform: translateX(5px);
        }

        .category-list a i {
            width: 20px;
            text-align: center;
        }

        @media (max-width: 768px) {
            .products-layout {
                grid-template-columns: 1fr;
            }
            .product-sidebar {
                position: static;
                margin-bottom: 2rem;
            }
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 10%;
            position: relative;
            overflow: hidden;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            color: white;
            opacity: 0;
            animation: heroFadeIn 1.2s ease-out forwards;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
            z-index: 1;
        }

        .hero-campaign-badge {
            position: absolute;
            right: 6%;
            top: 18%;
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            transform: translateY(0);
            animation: floatBadge 4s ease-in-out infinite;
        }

        .hero-campaign-image {
            width: 140px;
            height: 140px;
            border-radius: 999px;
            padding: 6px;
            background: radial-gradient(circle at top, rgba(251, 113, 133, 0.9), rgba(56, 189, 248, 0.7));
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.4);
            overflow: hidden;
        }

        .hero-campaign-image img {
            width: 100%;
            height: 100%;
            border-radius: 999px;
            object-fit: cover;
        }

        .hero-campaign-text {
            background: rgba(15, 23, 42, 0.85);
            color: #f9fafb;
            padding: 0.85rem 1.2rem;
            border-radius: 999px;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.5);
            text-align: center;
            font-size: 0.85rem;
            display: flex;
            flex-direction: column;
            gap: 0.15rem;
            white-space: nowrap;
        }

        .hero-campaign-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: #fbbf24;
        }

        .hero-campaign-text strong {
            font-size: 0.9rem;
        }

        .hero-campaign-subtitle {
            font-size: 0.8rem;
            opacity: 0.9;
        }

        @keyframes floatBadge {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: 4rem;
            font-family: inherit;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #fff;
            text-shadow: 0 0 20px rgba(255,255,255,0.5), 0 0 40px rgba(232, 67, 147, 0.5);
            line-height: 1.1;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes heroFadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        /* Products Grid Fix */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); /* Reduced from 280px */
            gap: 2rem;
            padding: 1rem 0;
        }

        .product-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            overflow: hidden;
            text-decoration: none;
            color: var(--primary-color);
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-color: var(--secondary-color);
        }

        .product-img {
            width: 100%;
            aspect-ratio: 4 / 3;
            height: auto;
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f9f9f9;
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.6s ease;
            padding: 10px;
        }

        .product-card:hover .product-img img {
            transform: scale(1.1);
        }

        .product-info {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .product-title {
            font-family: inherit;
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }

        .product-desc {
            font-size: 0.9rem;
            color: var(--muted);
            margin-bottom: 1rem;
            flex: 1;
        }

        .product-price {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }

        .pill {
            display: inline-block;
            font-size: 0.75rem;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            background: rgba(0, 206, 201, 0.1);
            color: var(--accent-color);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .hero-visual-card {
            position: absolute;
            left: 1.75rem;
            right: 1.75rem;
            bottom: 1.75rem;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 22px;
            padding: 1.75rem;
            box-shadow: 0 20px 50px rgba(64, 1, 1, 0.18);
            backdrop-filter: blur(6px);
            z-index: 2;
        }

        .hero-visual-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .stats-strip {
            background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.98));
            padding: 3rem 8%;
            margin: 0 5%;
            border-radius: 24px;
            box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
            position: relative;
            z-index: 10;
        }

        .stat-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1.75rem;
            text-align: center;
        }

        .stat {
            padding: 1.5rem 1rem;
            border-radius: 20px;
            background: radial-gradient(circle at top, rgba(248, 250, 252, 1), rgba(241, 245, 249, 0.9));
            border: 1px solid rgba(148, 163, 184, 0.25);
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
            position: relative;
            overflow: hidden;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }

        .stat::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top, rgba(251, 113, 133, 0.12), transparent 60%);
            opacity: 0;
            transition: opacity 0.25s ease;
        }

        .stat:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
            border-color: rgba(251, 113, 133, 0.45);
        }

        .stat:hover::before {
            opacity: 1;
        }

        .stat-icon {
            width: 36px;
            height: 36px;
            border-radius: 999px;
            margin: 0 auto 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(56, 189, 248, 0.08);
            color: var(--accent-color);
        }

        .stat span {
            display: block;
            font-size: 2.2rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.15rem;
        }

        .stat p {
            margin: 0;
            font-weight: 600;
            color: var(--primary-color);
        }

        .stat small {
            display: block;
            margin-top: 0.35rem;
            font-size: 0.8rem;
            color: var(--muted);
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
        }

        .glass-card {
            background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(253,247,242,0.9));
            border-radius: 28px;
            padding: 2.5rem;
            box-shadow: 0 20px 60px rgba(64, 1, 1, 0.08), 0 8px 16px rgba(64, 1, 1, 0.05);
            border: 1px solid rgba(217, 195, 169, 0.2);
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .glass-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 70px rgba(64, 1, 1, 0.12), 0 12px 24px rgba(64, 1, 1, 0.08);
        }

        .story-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .story-card {
            padding: 2rem;
            border-radius: 22px;
            background: var(--white);
            box-shadow: var(--shadow);
        }

        .quote-card {
            background: linear-gradient(135deg, var(--sand), var(--light-sand));
            color: var(--primary-color);
            border-radius: 26px;
            padding: 2.5rem;
            font-style: italic;
            font-size: 1.1rem;
            line-height: 1.8;
            border-left: 4px solid var(--accent-color);
            box-shadow: 0 10px 30px rgba(64, 1, 1, 0.08);
            position: relative;
        }

        .quote-card::before {
            content: '\201C';
            position: absolute;
            top: 1rem;
            left: 1.5rem;
            font-size: 4rem;
            color: var(--accent-color);
            opacity: 0.2;
            font-family: 'Playfair Display', serif;
        }

        .founder-card {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mission-list li {
            list-style: none;
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
            color: var(--muted);
        }

        .mission-list li::before {
            content: '✺';
            position: absolute;
            left: 0;
            color: var(--nature-color);
        }

        .tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 2.5rem;
        }

        .tab-btn {
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 999px;
            background: rgba(64, 1, 1, 0.08);
            color: var(--primary-color);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tab-btn.active {
            background: var(--primary-color);
            color: var(--white);
            box-shadow: 0 10px 20px rgba(64, 1, 1, 0.2);
        }

        .category-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 2.5rem;
        }

        .category-tab {
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 999px;
            background: rgba(64, 1, 1, 0.08);
            color: var(--primary-color);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .category-tab i {
            font-size: 1rem;
            opacity: 0.8;
        }

        .category-tab.active {
            background: var(--primary-color);
            color: var(--white);
            box-shadow: 0 10px 20px rgba(64, 1, 1, 0.2);
            transform: translateY(-2px);
        }

        /* .category-products styles removed as they are replaced by .category-content */

        /* .routine-content styles removed as they are replaced by .category-content */

        .category-content {
            display: none;
            animation: fadeIn 0.4s ease;
        }

        .category-content.active {
            display: block;
        }

        .step-card {
            padding: 1.75rem;
            border-radius: 22px;
            background: radial-gradient(circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(252, 211, 255, 0.4), transparent 60%), var(--white);
            box-shadow: var(--shadow);
            border: 1px solid rgba(64, 1, 1, 0.05);
            position: relative;
            overflow: hidden;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
        }

        .step-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(64, 1, 1, 0.12);
            border-color: rgba(232, 67, 147, 0.4);
        }

        .step-number {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--light-sand);
            color: var(--accent-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .step-number.pulse {
            animation: pulseNumber 1.6s infinite ease-in-out;
        }

        .step-card h4 i {
            margin-right: 0.4rem;
            color: var(--accent-color);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        /* Removed duplicate product-card styles to allow new styles to take effect */
        
        .product-detail-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
            padding: 5rem 10%;
        }

        .detail-gallery {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .detail-gallery-main {
            border-radius: 28px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .thumbs {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 0.75rem;
        }

        .thumbs img {
            border-radius: 14px;
            height: 100px;
            object-fit: cover;
            cursor: pointer;
            border: 2px solid transparent;
            transition: border 0.3s ease;
        }

        .thumbs img.active {
            border-color: var(--accent-color);
        }

        .detail-info h1 {
            font-size: 2.5rem;
            font-family: inherit;
            margin-bottom: 1rem;
        }

        .detail-price {
            font-size: 2.2rem;
            color: #e36f5d;
            margin-bottom: 1rem;
        }

        .feature-list {
            margin: 2rem 0;
            display: grid;
            gap: 0.75rem;
        }

        .feature-list li {
            list-style: none;
            padding-left: 1.5rem;
            position: relative;
        }

        .feature-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #3ab49c;
        }

        footer {
            background: #11101d;
            color: rgba(255, 255, 255, 0.85);
            padding: 3rem 10%;
            text-align: center;
        }

        footer .social-links a {
            color: rgba(255, 255, 255, 0.65);
            margin: 0 0.5rem;
            font-size: 1.4rem;
            transition: color 0.3s ease;
        }

        footer .social-links a:hover {
            color: var(--accent-color);
        }

        form input, form textarea, select {
            font-family: inherit;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        section {
            animation: fadeIn 0.8s ease-out;
        }

        #routines {
            position: relative;
            transition: opacity 0.6s ease, transform 0.6s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        #routines.in-view {
            opacity: 1;
            transform: translateY(0);
        }

        .routine-header {
            text-align: center;
            margin-bottom: 2.5rem;
            max-width: 760px;
            margin-left: auto;
            margin-right: auto;
        }

        .routine-kicker {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.35rem 0.9rem;
            border-radius: 999px;
            background: rgba(232, 67, 147, 0.08);
            color: var(--secondary-color);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 0.75rem;
        }

        .routine-kicker i {
            color: var(--accent-color);
        }

        .routine-badges {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .routine-badges span {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.4rem 0.9rem;
            border-radius: 999px;
            background: rgba(255,255,255,0.9);
            box-shadow: 0 8px 18px rgba(0,0,0,0.05);
            font-size: 0.8rem;
            color: var(--muted);
        }

        .routine-badges i {
            color: var(--accent-color);
        }

        .routine-steps.breathe {
            animation: breatheSteps 0.8s ease;
        }

        @keyframes pulseNumber {
            0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(232, 67, 147, 0.0); }
            50% { transform: scale(1.08); box-shadow: 0 0 0 10px rgba(232, 67, 147, 0.12); }
        }

        @keyframes breatheSteps {
            0% { transform: translateY(6px); opacity: 0.4; }
            100% { transform: translateY(0); opacity: 1; }
        }

        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        @media (max-width: 900px) {
            header {
                padding: 1rem 5%;
            }

            .logo img {
                width: 150px;
            }

            nav ul {
                display: none;
            }

            section {
                padding: 3rem 5%;
            }

            .hero {
                gap: 2rem;
                padding: 3rem 5%;
            }

            .hero-text h1 {
                font-size: 2.2rem;
                line-height: 1.2;
            }

            .hero-text p {
                font-size: 0.95rem;
            }

            .stat-grid {
                gap: 0.75rem;
            }

            .stat {
                padding: 1rem;
            }

            .stat span {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .product-card {
                border-radius: 20px;
            }

            .product-img {
                height: auto;
                aspect-ratio: 4/3;
                padding: 0.5rem;
            }

            .product-info {
                padding: 1rem;
            }

            .product-price {
                font-size: 1rem;
            }

            .pill {
                font-size: 0.7rem;
                padding: 0.25rem 0.6rem;
            }

            .btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            .glass-card {
                padding: 1.5rem;
            }
        }

        .routine-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
        }