/* 
   Rubina Henna World Style - Custom Professional Redesign
   Featuring Luxury HSL Green Palette & Glassmorphic Highlights
*/

:root {
    /* Rich green color scheme based on professional design standards */
    --primary-hsl: 136, 53%, 25%; /* Forest Henna Green */
    --primary: hsl(var(--primary-hsl));
    --primary-light: hsl(136, 53%, 35%);
    --primary-dark: hsl(136, 53%, 15%);
    --primary-bg: hsl(136, 30%, 96%);
    
    /* Gold / Warm Organic Accents */
    --accent-orange: hsl(28, 95%, 53%); /* Vibrant orange from the screenshot contact button */
    --accent-orange-hover: hsl(28, 95%, 45%);
    --accent-gold: hsl(43, 90%, 55%);
    
    /* Text colors */
    --text-main: hsl(136, 20%, 15%);
    --text-light: hsl(136, 12%, 40%);
    --text-white: #ffffff;
    
    /* System variables */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 10px 30px rgba(15, 48, 20, 0.08);
    --shadow-heavy: 0 20px 40px rgba(15, 48, 20, 0.15);
    --border-radius: 12px;
}

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

ul, ol {
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-orange);
    margin-bottom: 12px;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(136, 175, 140, 0.2);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-contact {
    background-color: var(--accent-orange);
    color: white;
    box-shadow: 0 4px 15px rgba(243, 112, 33, 0.3);
}

.btn-contact:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 112, 33, 0.4);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.top-bar-info span {
    margin-right: 20px;
}

.top-bar-info i {
    color: var(--accent-gold);
    margin-right: 6px;
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 15px;
}

.top-bar-social a:hover {
    color: var(--accent-gold);
}

/* Navbar */
.navbar {
    background: #ffffff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo img {
    height: 52px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links > li > a {
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--text-main);
    padding: 8px 0;
    position: relative;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
    width: 100%;
}

.nav-links > li > a.active {
    color: var(--primary);
    font-weight: 600;
}

/* Dropdown Menu Structure */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 230px;
    border-radius: 8px;
    box-shadow: var(--shadow-heavy);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    padding: 12px 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

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

.dropdown-menu li {
    position: relative;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
}

.dropdown-menu li a:hover {
    background-color: var(--primary-bg);
    color: var(--primary);
}

/* Nested Sub-dropdowns */
.nested-dropdown .nested-menu {
    position: absolute;
    left: 100%;
    top: 0;
    background: #ffffff;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: var(--shadow-heavy);
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: var(--transition);
    padding: 10px 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.nested-dropdown:hover .nested-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
}

/* Hero Section (Responsive YouTube Embed Box) */
.hero-video-section {
    width: 100%;
    background-color: #000;
    position: relative;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.hero-video-container iframe,
.hero-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

/* Premium Sound Toggle Button */
.sound-toggle-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(15, 48, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.sound-toggle-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Welcome Section */
.welcome-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--primary-bg) 100%);
}

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

.welcome-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 20px;
}

.welcome-content p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.welcome-stats {
    display: flex;
    gap: 20px;
}

.stat-card {
    flex: 1;
    background: #ffffff;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(136, 175, 140, 0.1);
    text-align: center;
}

.stat-card h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0;
}

.welcome-image-wrapper {
    position: relative;
}

.gradient-border-box {
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-gold));
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.gradient-border-box img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* Featured Highlights (Luxury Green HSL Gradients) */
.featured-highlights {
    padding: 100px 0;
    background: linear-gradient(135deg, hsl(136, 50%, 15%) 0%, hsl(136, 60%, 8%) 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.featured-highlights h2 {
    color: #ffffff;
}

.featured-highlights .section-header p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 50px;
}

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

.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.highlight-card h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(243, 112, 33, 0.3);
}

/* Portfolio / Gallery Showcase */
.products-gallery {
    padding: 100px 0;
    background-color: #ffffff;
}

.products-gallery .section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 50px;
}

.products-gallery h2 {
    font-size: 2.8rem;
}

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

.gallery-item {
    overflow: hidden;
    padding: 0;
}

.gallery-img {
    position: relative;
    height: 260px;
    overflow: hidden;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 48, 20, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-img img {
    transform: scale(1.08);
}

.zoom-btn {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    box-shadow: var(--shadow-heavy);
}

.zoom-btn:hover {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.1);
}

.gallery-info {
    padding: 24px;
}

.gallery-info span {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-orange);
    margin-bottom: 8px;
}

.gallery-info h3 {
    font-size: 1.35rem;
    color: var(--primary-dark);
    margin-bottom: 0;
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, hsl(136, 53%, 12%) 0%, hsl(136, 53%, 7%) 100%);
    color: #ffffff;
    padding: 0 0 30px;
    position: relative;
}

.footer-wave {
    position: relative;
    top: -1px;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.footer-wave .shape-fill {
    fill: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 52px;
    margin-bottom: 24px;
}

.about-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    margin-right: 10px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background-color: var(--accent-orange);
    color: #ffffff;
    border-color: var(--accent-orange);
    transform: translateY(-3px);
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-orange);
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a i {
    font-size: 0.75rem;
    color: var(--accent-orange);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-col ul li a:hover i {
    transform: translateX(4px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.contact-info li i {
    color: var(--accent-orange);
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: var(--accent-orange);
}

/* WhatsApp Floating Pill Button (Perfect match to original) */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    padding: 12px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    z-index: 999;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.whatsapp-float-btn i {
    font-size: 1.4rem;
}

}

/* ==========================================================================
   Product Detail Page Styles
   ========================================================================== */

/* Breadcrumb Banner */
.breadcrumb-banner {
    background: linear-gradient(135deg, hsl(136, 50%, 12%) 0%, hsl(136, 53%, 7%) 100%);
    color: #ffffff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--accent-gold);
}

.breadcrumb-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(136, 175, 140, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb-category {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.breadcrumb-content h1 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.breadcrumb-links {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.breadcrumb-links a:hover {
    color: var(--accent-gold);
}

.breadcrumb-links i {
    font-size: 0.75rem;
    margin: 0 8px;
    color: var(--accent-gold);
}

/* Product Detail Grid Layout */
.product-detail-section {
    padding: 80px 0;
    background-color: var(--primary-bg);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.product-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
    font-size: 1.3rem;
    color: var(--primary-light);
    font-weight: 500;
}

/* Left Column: Product Media Card */
.product-media-column {
    position: sticky;
    top: 110px;
}

.product-image-card {
    padding: 24px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.product-image-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.main-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-image-card:hover .main-product-img {
    transform: scale(1.05);
}

.organic-badges-overlay {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.organic-badges-overlay span {
    background: rgba(136, 175, 140, 0.12);
    border: 1px solid rgba(136, 175, 140, 0.25);
    color: var(--primary-dark);
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.organic-badges-overlay span i {
    color: var(--accent-orange);
}

/* Right Column: Product Meta Details */
.product-badge-cat {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.product-meta-header h2 {
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.product-tagline {
    font-size: 1.1rem;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.product-stats-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(136, 175, 140, 0.2);
}

.price-tag {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
}

.price-tag i {
    color: var(--accent-gold);
    margin-right: 6px;
}

.status-tag {
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-tag.instock {
    color: #25d366;
}

/* Interactive Tabs Component */
.product-description-tabs {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(136, 175, 140, 0.12);
    overflow: hidden;
    margin-bottom: 30px;
}

.tab-controls {
    display: flex;
    background-color: var(--primary-bg);
    border-bottom: 1px solid rgba(136, 175, 140, 0.15);
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: var(--primary);
    background-color: rgba(255,255,255,0.4);
}

.tab-btn.active {
    color: var(--primary-dark);
    border-bottom-color: var(--accent-orange);
    background-color: #ffffff;
}

.tab-panels {
    padding: 30px;
}

.tab-panel {
    display: none;
    animation: fadeInTab 0.4s ease-in-out forwards;
}

.tab-panel.active {
    display: block;
}

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

.tab-panel p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Specific Tab Styles */
.feature-small-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px dashed rgba(136, 175, 140, 0.2);
}

.f-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.f-item i {
    color: var(--accent-orange);
}

.benefit-check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-light);
}

.benefit-check-list li i {
    color: #25d366;
    margin-top: 5px;
}

.usage-steps-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.usage-steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-light);
}

.step-num {
    background-color: var(--primary-bg);
    color: var(--primary-dark);
    border: 1px solid rgba(136, 175, 140, 0.25);
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.ingredients-chip-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.ingredient-chip {
    background-color: var(--primary-bg);
    border: 1px solid rgba(136, 175, 140, 0.15);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.botanical-disclaimer {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
    background-color: hsl(43, 30%, 96%);
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-gold);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.botanical-disclaimer i {
    color: var(--accent-gold);
    margin-top: 3px;
}

/* Call to Action ordering */
.product-cta-action {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(136, 175, 140, 0.12);
}

.btn-whatsapp-buy {
    background-color: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-buy:hover {
    background-color: #20ba59;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-buy i {
    font-size: 1.4rem;
}

.cta-guarantee {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 12px;
    margin-bottom: 0;
    font-weight: 600;
}

.cta-guarantee i {
    color: var(--accent-orange);
    margin-right: 4px;
}

/* Related Products Grid */
.related-products-section {
    padding: 80px 0 100px;
    background-color: #ffffff;
    border-top: 1px solid rgba(136, 175, 140, 0.15);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.related-product-card {
    padding: 0;
    overflow: hidden;
}

.related-img-box {
    height: 200px;
    overflow: hidden;
    background-color: var(--primary-bg);
}

.related-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-product-card:hover .related-img-box img {
    transform: scale(1.06);
}

.related-info-box {
    padding: 24px;
}

.related-cat-label {
    display: inline-block;
    color: var(--accent-orange);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.related-info-box h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.related-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.related-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-dark);
    transition: var(--transition);
}

.related-detail-link i {
    transition: var(--transition);
}

.related-detail-link:hover {
    color: var(--accent-orange);
}

.related-detail-link:hover i {
    transform: translateX(4px);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-media-column {
        position: static;
    }

    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .welcome-content h2 {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-video-container {
        height: 350px;
    }

    .breadcrumb-content h1 {
        font-size: 2.0rem;
    }

    .product-meta-header h2 {
        font-size: 2.0rem;
    }

    .top-bar {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 15px;
        box-shadow: var(--shadow-heavy);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        clip-path: circle(0 at 100% 0);
        transition: clip-path 0.4s ease-in-out;
    }
    
    .nav-links.active {
        clip-path: circle(150% at 100% 0);
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        transform: none;
        padding: 10px 0 0 15px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .nested-dropdown .nested-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        transform: none;
        padding: 10px 0 0 15px;
        display: none;
    }
    
    .nested-dropdown.active .nested-menu {
        display: block;
    }
    
    .nav-right .btn-contact {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
