/* ==========================================================================
   1. CSS Reset & Base Styles
   ========================================================================== */

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

:root {
    /* Color Palette Based on Your Preferred Gradient */
    --color-primary: #706d9c;
    --color-primary-light: #9d9bbd;
    --color-primary-dark: #4a4866;
    --color-secondary: #926ecc;
    --color-secondary-light: #b49ddf;
    --color-secondary-dark: #6d4e9c;
    --color-tertiary: #898fa0;
    --color-tertiary-light: #b6bbc7;
    --color-tertiary-dark: #5d6273;
    --color-accent: #26A69A;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-background: #f8f9fa;
    --color-background-alt: #e8eff1;
    --color-border: #e0e0e0;
    --color-border-light: #f0f0f0;
    --color-warning: #f9a825;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Nunito Sans', sans-serif;
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    
    /* Spacing */
    --space-xxs: 0.4rem;
    --space-xs: 0.8rem;
    --space-sm: 1.2rem;
    --space-md: 1.6rem;
    --space-lg: 2.4rem;
    --space-xl: 3.2rem;
    --space-xxl: 4.8rem;
    
    /* Borders */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-pill: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Main Gradient */
    --main-gradient: linear-gradient(135deg, #898fa0, #706d9c, #926ecc);
    --main-gradient-reverse: linear-gradient(135deg, #926ecc, #706d9c, #898fa0);
}

html {
    font-size: 62.5%; /* Sets base font size to 10px (assuming browser default of 16px) */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 1.6rem; /* 16px equivalent */
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Remove list styles */
ul, ol {
    list-style: none;
}

/* Reset links */
a {
    text-decoration: none;
    color: var(--color-primary);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-secondary);
}

/* Make images responsive by default */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   2. Typography & General Elements
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: var(--weight-bold);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-primary-dark);
}

h1 {
    font-size: 4.2rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.5rem;
}

.section-title {
    text-align: center;
    font-size: 4rem;
    margin-bottom: var(--space-xl);
    color: var(--color-primary-dark);
    position: relative;
    padding-bottom: var(--space-md);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 0.4rem;
    background: var(--main-gradient);
    border-radius: var(--border-radius-pill);
}

.disclaimer {
    font-size: 1.2rem;
    color: var(--color-text-light);
    font-style: italic;
}

/* ==========================================================================
   3. Layout & Container
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

section {
    padding: 8rem 0;
    position: relative;
}

/* ==========================================================================
   4. Buttons & Interactive Elements
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius-md);
    font-family: var(--font-primary);
    font-weight: var(--weight-semibold);
    font-size: 1.6rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-medium);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--main-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(114, 109, 156, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(114, 109, 156, 0.3);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
    font-weight: var(--weight-bold);
}

/* ==========================================================================
   5. Header & Navigation
   ========================================================================== */

.site-header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 5rem;
}

.main-nav ul {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: var(--color-text);
    font-weight: var(--weight-medium);
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--main-gradient);
    transition: width var(--transition-medium);
}

.main-nav a:hover, 
.main-nav a.active {
    color: var(--color-primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2.4rem;
    cursor: pointer;
}

/* Products Hero Section Styles */
.products-hero {
    position: relative;
    min-height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 12rem 0 8rem;
}

/* Hero Slider Container */
.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slider Slides */
.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    transform: scale(1.1);
}

.slider-slide.active {
    opacity: 1;
    transform: scale(1);
}

.slider-slide.active .slide-content {
    animation: slideContentIn 1.5s ease-out 0.5s both;
}

/* Slide Background */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4);
}

/* Slide Content */
.slide-content {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    text-align: right;
    color: white;
    max-width: 500px;
    opacity: 0;
    z-index: 2;
}

.slide-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.slide-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.5;
}

.slide-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-prev svg,
.slider-next svg {
    width: 24px;
    height: 24px;
    color: white;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

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

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

.indicator.active {
    width: 40px;
    border-radius: 20px;
    background: white;
    border-color: white;
}

/* Animations */
@keyframes slideContentIn {
    from {
        opacity: 0;
        transform: translateY(-30%) translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

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

/* Background Environment (Overlay) */
.hero-environment {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(137, 143, 160, 0.7) 0%, 
        rgba(112, 109, 156, 0.6) 40%, 
        rgba(146, 110, 204, 0.5) 100%);
    mix-blend-mode: multiply;
}

.pattern-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iZ3JpZCIgd2lkdGg9IjYwIiBoZWlnaHQ9IjYwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48cGF0aCBkPSJNIDAgMCBMIDYwIDAgTCA2MCA2MCBMIDAgNjAgWiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLW9wYWNpdHk9IjAuMDUiIHN0cm9rZS13aWR0aD0iMSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmlkKSIgLz48L3N2Zz4=');
    opacity: 0.2;
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent);
    filter: blur(2px);
}

.particle-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation: floatParticle 25s infinite;
}

.particle-2 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 10%;
    animation: floatParticle 30s infinite reverse;
    animation-delay: -5s;
}

.particle-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation: floatParticle 35s infinite;
    animation-delay: -10s;
}

.particle-4 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 25%;
    animation: floatParticle 20s infinite reverse;
    animation-delay: -15s;
}

.particle-5 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    right: 5%;
    animation: floatParticle 28s infinite;
    animation-delay: -20s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -50px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, 30px) scale(0.9);
        opacity: 0.3;
    }
    75% {
        transform: translate(40px, 20px) scale(1.05);
        opacity: 0.4;
    }
}

/* Wave Decoration */
.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.05));
    border-radius: 100%;
}

.wave-1 {
    animation: waveMotion 20s linear infinite;
}

.wave-2 {
    animation: waveMotion 25s linear infinite reverse;
    opacity: 0.5;
    height: 120px;
}

.wave-3 {
    animation: waveMotion 30s linear infinite;
    opacity: 0.3;
    height: 140px;
}

@keyframes waveMotion {
    0% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(-25%) translateY(-10px);
    }
    100% {
        transform: translateX(-50%) translateY(0);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 15;
    text-align: center;
}

.hero-text-wrapper {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.badge-wrapper {
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gradient-text {
    background: linear-gradient(to right, #e6d6ff, #ffd6e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Search Bar */
.hero-search {
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.search-container {
    position: relative;
    background: white;
    border-radius: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-container:hover,
.search-container:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.search-input {
    width: 100%;
    padding: 1.5rem 4rem 1.5rem 2rem;
    border: none;
    font-size: 1.125rem;
    background: transparent;
    color: var(--color-text);
}

.search-input:focus {
    outline: none;
}

.search-button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--main-gradient);
    border: none;
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.search-button:hover {
    transform: translateY(-50%) scale(1.05);
}

.search-button svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: white;
}

.popular-searches {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.popular-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
}

.popular-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: white;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.popular-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.stat-card {
    text-align: center;
    color: white;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 5;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .slide-content {
        right: 5%;
        max-width: 400px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .products-hero {
        min-height: auto;
        padding: 10rem 0 6rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .search-container {
        border-radius: 30px;
    }
    
    .search-input {
        padding: 1.25rem 3.5rem 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .search-button {
        width: 3rem;
        height: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .particle {
        display: none;
    }
    
    /* Slider adjustments for tablet */
    .slide-content {
        right: 50%;
        transform: translateX(50%) translateY(-50%);
        text-align: center;
        max-width: 90%;
        padding: 0 1rem;
    }
    
    .slide-title {
        font-size: 1.75rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slider-controls {
        padding: 0 1rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
    }
    
    @keyframes slideContentIn {
        from {
            opacity: 0;
            transform: translateX(50%) translateY(-20%);
        }
        to {
            opacity: 1;
            transform: translateX(50%) translateY(-50%);
        }
    }
}

/* PRODUCT CATEGORIES SECTION */
.product-categories-section {
    padding: 4rem 0;
    background: #ffffff;
    position: relative;
}

.product-categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

/* Categories Header */
.categories-header {
    text-align: center;
    margin-bottom: 3rem;
}

.categories-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.categories-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    border-radius: 2px;
}

.categories-subtitle {
    font-size: 1.125rem;
    color: #6c757d;
    max-width: 600px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Category Item */
.category-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), rgba(139, 133, 255, 0.05));
    transition: width 0.3s ease;
    z-index: 0;
}

.category-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #6c63ff;
}

.category-item:hover::before {
    width: 100%;
}

.category-item.featured {
    border-color: #6c63ff;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.03), rgba(139, 133, 255, 0.03));
}

.category-item.special {
    border-color: #ff6b6b;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.03), rgba(255, 142, 83, 0.03));
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.1);
}

.category-item.special:hover {
    border-color: #ff8e53;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.15);
}

/* Category Icon Wrapper */
.category-icon-wrapper {
    position: relative;
    margin-right: 1.25rem;
    flex-shrink: 0;
    z-index: 1;
}

.category-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.category-item:hover .category-icon {
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    border-color: transparent;
    transform: scale(1.1) rotate(5deg);
}

.category-icon span {
    font-size: 1.75rem;
    transition: transform 0.3s ease;
}

.category-item:hover .category-icon span {
    transform: scale(1.1);
    filter: grayscale(0) brightness(2);
}

/* Category Badge */
.category-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    padding: 0.25rem 0.5rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 8px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
    z-index: 2;
}

.category-badge.controlled {
    background: linear-gradient(135deg, #dc3545, #ff6b6b);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.category-badge.new {
    background: linear-gradient(135deg, #007bff, #0056b3);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.category-badge.coming {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.category-badge.highlight {
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    box-shadow: 0 2px 8px rgba(108, 99, 255, 0.3);
}

.category-badge.special {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

/* Category Content */
.category-content {
    flex: 1;
    z-index: 1;
    min-width: 0;
}

.category-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.category-item:hover .category-name {
    color: #6c63ff;
}

.category-description {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.category-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.stat-item {
    color: #495057;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.stat-divider {
    color: #dee2e6;
}

/* Category Arrow */
.category-arrow {
    margin-left: 1rem;
    color: #6c757d;
    transition: all 0.3s ease;
    z-index: 1;
}

.category-item:hover .category-arrow {
    color: #6c63ff;
    transform: translateX(5px);
}

/* Categories Footer */
.categories-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.categories-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    border-radius: 50px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .product-categories-section {
        padding: 3rem 0;
    }
    
    .categories-title {
        font-size: 2rem;
    }
    
    .categories-subtitle {
        font-size: 1rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .category-item {
        padding: 1.25rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .category-icon span {
        font-size: 1.5rem;
    }
    
    .category-name {
        font-size: 1.125rem;
    }
    
    .category-description {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-item {
        padding: 1rem;
    }
    
    .category-icon-wrapper {
        margin-right: 1rem;
    }
    
    .category-arrow {
        display: none;
    }
    
    .stat-item {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
}

/* HRT SECTION STYLES */
.hrt-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* HRT Tabs */
.hrt-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hrt-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hrt-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hrt-tab.active {
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    border-color: transparent;
}

.tab-icon {
    font-size: 1.5rem;
}

/* HRT Content Sections */
.hrt-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hrt-content.active {
    display: block;
    animation: fadeInContent 0.5s ease-out forwards;
}

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

/* Product Category */
.product-category {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
}

.category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-count {
    padding: 0.5rem 1rem;
    background: #f0f0f0;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6c757d;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.product-card.featured {
    border: 2px solid #6c63ff;
}

.product-card.coming-soon {
    opacity: 0.8;
}

/* Product Status Badge */
.product-status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: #28a745;
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.product-status-badge.coming {
    background: #ffc107;
}

.product-card.featured .product-status-badge {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
}

/* Product Image */
.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '💊';
    font-size: 4rem;
    opacity: 0.3;
    position: absolute;
}

.product-image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    opacity: 0.5;
    display: none; /* Hide img element if no source */
}

.product-image img[src]:not([src=""]):not([src="/images/product-placeholder.png"]) {
    display: block; /* Show only if actual image exists */
}

/* Product Info */
.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.product-brands {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Product Details */
.product-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-details span {
    padding: 0.25rem 0.75rem;
    background: #f0f0f0;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #495057;
}

.product-details .controlled {
    background: #ffe0e0;
    color: #dc3545;
}

/* Product Price */
.product-price {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.price-from {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6c63ff;
    margin-bottom: 0.5rem;
}

.insurance-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #d4edda;
    color: #155724;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.btn-consultation,
.btn-learn-more,
.btn-notify {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-consultation {
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
}

.btn-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.btn-learn-more {
    background: white;
    color: #6c63ff;
    border: 2px solid #6c63ff;
}

.btn-learn-more:hover {
    background: #f8f9fa;
}

.btn-notify {
    background: #e0e0e0;
    color: #6c757d;
    cursor: not-allowed;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e0e0e0;
}

.btn-view-all {
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(108, 99, 255, 0.3);
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
}

.cta-note {
    margin-top: 1rem;
    color: #6c757d;
    font-size: 1rem;
}

.cta-note a {
    color: #6c63ff;
    font-weight: 600;
    text-decoration: none;
}

.cta-note a:hover {
    text-decoration: underline;
}

/* Responsive Design for HRT Section */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .hrt-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .hrt-tab {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .popular-searches {
        gap: 0.5rem;
    }
    
    .popular-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    /* Slider adjustments for mobile */
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-description {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .slide-price {
        font-size: 1rem;
    }
    
    .slide-badge {
        font-size: 0.625rem;
        padding: 0.4rem 0.8rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
    }
    
    .slider-indicators {
        bottom: 2rem;
        gap: 0.75rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .indicator.active {
        width: 30px;
    }
}

/* TESTOSTERONE SECTION STYLES */
.testosterone-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.testosterone-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(112, 109, 156, 0.03));
    pointer-events: none;
}

/* Showcase Grid */
.testosterone-showcase {
    margin-top: 3rem;
}

.showcase-category {
    margin-bottom: 4rem;
}

.showcase-category .category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
}

.showcase-category .category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Showcase Cards */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.showcase-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.showcase-card.featured {
    border: 2px solid #6c63ff;
    transform: scale(1.02);
}

.showcase-card.coming-soon {
    opacity: 0.7;
}

.showcase-card.coming-soon .card-content {
    filter: grayscale(50%);
}

/* Card Header */
.card-header {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.product-badge {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.controlled-badge {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #dc3545, #c92a3a);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: auto;
}

/* Card Image */
.card-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.showcase-card:hover .card-image img {
    transform: scale(1.1) rotate(5deg);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-card:hover .image-overlay {
    opacity: 1;
}

.view-details {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Card Content */
.card-content {
    padding: 2rem;
}

.card-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.product-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #495057;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Price Info */
.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.price {
    font-size: 1.75rem;
    font-weight: 800;
    color: #6c63ff;
}

.supply {
    color: #6c757d;
    font-size: 0.9rem;
}

.insurance-note {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #d4edda;
    color: #155724;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Buttons */
.btn-primary-card {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.btn-primary-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.4);
}

.btn-notify {
    width: 100%;
    padding: 1rem;
    background: #e0e0e0;
    color: #6c757d;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: not-allowed;
}

/* Protocol Information */
.protocol-info {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), rgba(139, 133, 255, 0.05));
    border-radius: 24px;
    border: 1px solid rgba(108, 99, 255, 0.1);
}

.info-card {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.info-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-icon svg {
    fill: #6c63ff;
}

.info-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.info-content p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.info-link {
    color: #6c63ff;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.info-link:hover {
    gap: 1rem;
}

/* THYROID SECTION STYLES */
.thyroid-section {
    padding: 5rem 0;
    background: white;
    position: relative;
}

/* Thyroid Grid */
.thyroid-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.thyroid-column {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.column-header {
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.column-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.column-header p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Medication Cards */
.medication-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.medication-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.medication-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #6c63ff, #8b85ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.medication-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.medication-card:hover::before {
    opacity: 1;
}

.medication-card.premium {
    border: 2px solid #6c63ff;
}

.medication-card.popular {
    border: 2px solid #28a745;
}

.medication-card.custom {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), rgba(139, 133, 255, 0.05));
}

/* Medication Headers */
.med-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.med-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
}

.brand-badge,
.generic-badge,
.premium-badge,
.compound-badge,
.natural-badge,
.custom-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-badge {
    background: #007bff;
    color: white;
}

.generic-badge {
    background: #28a745;
    color: white;
}

.premium-badge {
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
}

.compound-badge {
    background: #17a2b8;
    color: white;
}

.natural-badge {
    background: #ffc107;
    color: #212529;
}

.custom-badge {
    background: #6f42c1;
    color: white;
}

/* Medication Details */
.med-description {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.strengths {
    margin-bottom: 1rem;
}

.strength-label {
    display: block;
    font-size: 0.875rem;
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.strength-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pill {
    padding: 0.25rem 0.75rem;
    background: #e0e0e0;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #495057;
}

/* Medication Pricing */
.med-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.popular-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #d4edda;
    color: #155724;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Custom Options */
.custom-options {
    list-style: none;
    margin-bottom: 1rem;
}

.custom-options li {
    padding: 0.25rem 0;
    color: #495057;
    font-size: 0.875rem;
}

/* Select Medication Button */
.btn-select-medication {
    width: 100%;
    padding: 0.75rem;
    background: white;
    color: #6c63ff;
    border: 2px solid #6c63ff;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-medication:hover {
    background: #6c63ff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

/* Testing CTA */
.testing-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa, white);
    border-radius: 24px;
    border: 2px solid #e0e0e0;
}

.testing-cta .cta-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.cta-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(139, 133, 255, 0.1));
    border-radius: 24px;
}

.cta-icon svg {
    fill: #6c63ff;
}

.cta-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.cta-text p {
    color: #495057;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.4);
}

.cta-buttons .btn-secondary {
    background: white;
    color: #6c63ff;
    border: 2px solid #6c63ff;
}

.cta-buttons .btn-secondary:hover {
    background: #f8f9fa;
}

/* SPECIALTY SECTION STYLES */
.specialty-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    position: relative;
    overflow: hidden;
}

.specialty-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.1), transparent);
    border-radius: 50%;
}

/* Specialty Grid */
.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.specialty-category {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.specialty-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6c63ff, #8b85ff, #6c63ff);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.specialty-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.specialty-category:hover::before {
    opacity: 1;
    animation: gradientSlide 3s linear infinite;
}

@keyframes gradientSlide {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Category Icon */
.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(139, 133, 255, 0.1));
    border-radius: 24px;
}

.specialty-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.specialty-category p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

/* Medication Checklist */
.medication-checklist {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.medication-checklist li {
    padding: 0.5rem 0;
    color: #495057;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Category Action */
.category-action {
    margin-top: auto;
}

.price-range,
.availability {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: #6c63ff;
    margin-bottom: 1rem;
}

.availability {
    color: #ffc107;
}

.btn-explore {
    width: 100%;
    padding: 0.875rem;
    background: white;
    color: #6c63ff;
    border: 2px solid #6c63ff;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background: linear-gradient(135deg, #6c63ff, #8b85ff);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

/* Responsive Design for All Sections */
@media (max-width: 1200px) {
    .showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .thyroid-grid {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin: 3rem auto 0;
    }
}

@media (max-width: 768px) {
    .showcase-category .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .showcase-grid,
    .specialty-grid {
        grid-template-columns: 1fr;
    }
    
    .testing-cta .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons button {
        width: 100%;
    }
    
    .protocol-info {
        padding: 2rem;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .showcase-card {
        border-radius: 16px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-content h4 {
        font-size: 1.25rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .thyroid-column {
        padding: 1.5rem;
    }
    
    .medication-card {
        padding: 1rem;
    }
    
    .specialty-category {
        padding: 2rem;
    }
}
