/* Design System Variables */
:root {
    --primary: #1a1a1a;
    --primary-light: #333333;
    --secondary: #c9a66b;
    --secondary-hover: #b8955a;
    --accent: #e8e8e8;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --text-dark: #222222;
    --text-muted: #666666;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hide-mobile {
    display: flex;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

/* Hide by default (desktop) */
.hide-desktop {
  display: none;
}

/* Show only on mobile screens */
@media (max-width: 768px) {
  .hide-desktop {
    display: inline-block; /* or block depending on your layout */
  }
}

.subtitle {
    display: block;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-link {
    color: var(--secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-link:hover {
    gap: 12px;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
}

/* Simplified 2-Row Header (V4) */
.header-v4 {
    width: 100%;
    max-width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    -webkit-transform: translateZ(0); /* Force hardware accel for first paint fix */
    transform: translateZ(0);
}

/* Row 0: Top Bar (Contact & Social) */
.header-top {
    background: #0f0f0f;
    color: #ffffff;
    padding: 8px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 1002;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-contact a {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.top-contact a:hover {
    color: var(--secondary);
}

.top-contact i {
    color: var(--secondary);
    font-size: 0.75rem;
}

.top-sep {
    color: rgba(255,255,255,0.1);
    font-weight: 300;
}

.top-social {
    display: flex;
    gap: 18px;
}

.top-social a {
    color: #ffffff;
    opacity: 0.6;
    transition: var(--transition);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-social a:hover {
    opacity: 1;
    color: var(--secondary);
    transform: translateY(-2px);
}

/* Row 1: Main Bar (Charcoal) */
.header-main {
    background: #1a1a1a;
    color: #ffffff;
    padding: 12px 0;
}

/* New Logo Branding: Jotking */
.logo-brand-block {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.logo-brand-block:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(201, 166, 107, 0.2));
}

.logo-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff; /* White text for Charcoal background */
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

.logo-info .tagline {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 4px;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 35px;
}

.nav-menu li a {
    color: rgba(255,255,255,0.8);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--secondary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-contact-v4 {
    display: flex;
    align-items: center;
}

.contact-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(201, 166, 107, 0.05);
    border: 1px solid rgba(201, 166, 107, 0.15);
    padding: 8px 20px;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shine 4s infinite;
}

@keyframes shine {
    from { left: -150%; }
    to { left: 150%; }
}

.contact-inner:hover {
    background: rgba(201, 166, 107, 0.1);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.contact-inner i {
    color: var(--secondary);
    font-size: 1.25rem;
    filter: drop-shadow(0 0 8px rgba(201, 166, 107, 0.3));
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.numbers-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.numbers-row a {
    transition: var(--transition);
}

.numbers-row a:hover {
    color: var(--secondary);
    letter-spacing: 0.2px;
}

.sep {
    color: var(--secondary);
    font-weight: 300;
    opacity: 0.5;
    font-size: 0.8rem;
}

.contact-tagline {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 5px;
}

/* Row 2: Categories (Product Focus) */
.header-categories {
    background: #ffffff;
    padding: 12px 0;
    border-bottom: 1px solid #eeeeee;
}

.cat-label {
    font-weight: 800;
    font-size: 0.85rem;
    color: #1a1a1a;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 20px;
    border-right: 2px solid #eee;
    margin-right: 20px;
}

.cat-label i {
    color: var(--secondary);
}

/* Row 2: Categories (Product Focus) */
.header-categories {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.cat-label {
    font-weight: 800;
    font-size: 0.8rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 25px;
    border-right: 1px solid rgba(0,0,0,0.1);
    margin-right: 20px;
}

.cat-label i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.cat-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
    flex-grow: 1;
}

.cat-item {
    position: relative;
}

.cat-item > a {
    font-size: 0.85rem;
    font-weight: 700;
    color: #444;
    padding: 8px 18px;
    border-radius: 50px; /* Pill Shape */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid transparent;
}

.cat-item > a:hover,
.cat-item.has-dropdown:hover > a {
    background: rgba(201, 166, 107, 0.08);
    color: var(--secondary);
    border-color: rgba(201, 166, 107, 0.2);
}

.drop-icon {
    font-size: 0.7rem;
    opacity: 0.5;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cat-item:hover .drop-icon {
    transform: rotate(180deg);
    opacity: 1;
}

/* Premium Glassmorphism Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%; /* Align directly to bottom of parent */
    left: 50%; /* Center relative to parent li */
    transform: translateX(-50%) translateY(15px) scale(0.98);
    width: 380px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 25px;
    margin-top: 10px; /* Visual gap managed by absolute positioning offset */
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    z-index: 1001;
}

/* Invisible bridge to catch the mouse cursor while moving to dropdown */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

/* Arrow for dropdown */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%; /* Center the arrow */
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.03);
    border-left: 1px solid rgba(0,0,0,0.03);
}

.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-header {
    margin-bottom: 25px;
}

.dropdown-header h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.dropdown-header p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
}

.dropdown-items {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-bottom: 25px;
    max-height: 350px; /* Limit height for scrollability */
    overflow-y: auto;
    padding-right: 10px; /* Space for scrollbar */
}

/* Premium Scrollbar for Dropdown */
.dropdown-items::-webkit-scrollbar {
    width: 4px;
}

.dropdown-items::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.02);
    border-radius: 10px;
}

.dropdown-items::-webkit-scrollbar-thumb {
    background: rgba(201, 166, 107, 0.3);
    border-radius: 10px;
}

.dropdown-items::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

.dropdown-items li a {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 12px !important;
    border-radius: 12px !important;
    background: transparent !important;
    color: #333 !important;
    transition: all 0.3s !important;
}

.dropdown-items li a:hover {
    background: #ffffff !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05) !important;
    transform: translateX(5px) !important;
}

.item-thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f7;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.05);
}

.item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dropdown-items li a:hover img {
    transform: scale(1.15);
}

.dropdown-items .item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.dropdown-items .name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.dropdown-items .spec {
    font-size: 0.75rem;
    color: #999;
}

.dropdown-items i {
    font-size: 0.8rem;
    color: var(--secondary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.dropdown-items li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.dropdown-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.dropdown-footer a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    color: var(--secondary) !important;
    font-weight: 800 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    background: rgba(201, 166, 107, 0.1) !important;
    padding: 12px !important;
    border-radius: 50px !important;
}

.dropdown-footer a:hover {
    background: var(--secondary) !important;
    color: #ffffff !important;
}

.cat-list .count {
    font-size: 0.7rem;
    color: var(--secondary);
    background: rgba(201, 166, 107, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 800;
}

.cat-all a {
    background: #1a1a1a !important;
    color: #ffffff !important;
    font-weight: 800 !important;
}

.cat-all a:hover {
    background: var(--secondary) !important;
    box-shadow: 0 4px 15px rgba(201, 166, 107, 0.3);
}

.cat-all a {
    background: rgba(201, 166, 107, 0.1) !important;
    color: var(--secondary) !important;
    border: 1px dashed var(--secondary) !important;
}

.btn-quote {
    background: var(--secondary);
    color: #ffffff;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* Page Layout Adjustments */
body {
    padding-top: 160px; /* Height of the 3-row header */
}

.home-page {
    padding-top: 0;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    body { padding-top: 145px !important; } /* Combined height of Row 0 + Row 1 + Row 2 */
    
    .header-top { 
        display: flex !important; 
        padding: 8px 0;
        background: #000000;
        width: 100vw; /* Strict width */
        max-width: 100%;
        overflow-x: auto; /* Allow specific safe scroll if really needed by super small phones */
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
    
    .header-top .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: max-content;
        min-width: 100%;
        padding: 0 12px;
        gap: 15px;
    }

    .top-contact { display: flex; gap: 8px; align-items: center; }
    .top-contact a { 
        color: #ffffff;
        font-size: 0.75rem; /* Safe readable size */
        display: flex;
        align-items: center;
        gap: 4px;
        font-weight: 500;
    }
    
    /* Reveal primary info */
    .top-contact a span { display: inline; }
    .top-sep { display: inline; color: rgba(255,255,255,0.3); font-size: 0.75rem; }
    
    .top-social { display: flex; gap: 12px; align-items: center; }
    .top-social a { 
        font-size: 0.9rem;
        color: var(--secondary);
    }
    
    .header-top::-webkit-scrollbar {
        height: 0px; 
        display: none;
    }

    .header-main { 
        padding: 10px 0;
        width: 100vw;
        max-width: 100%;
        /* Removed position: fixed, inherits normal flow in fixed parent */
        background: #1a1a1a;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .header-left .logo-icon { width: 35px; height: 35px; }
    .header-left .brand-name { font-size: 1.25rem; }
    .header-left .tagline { display: none; }
    
    .nav-menu {
        display: none; 
        position: fixed;
        /* Top is approximately the height of Top Bar (26px) + Main Bar (55px) = 81px, let's use 85px */
        top: 85px; 
        left: 0;
        width: 100%;
        height: calc(100vh - 85px);
        background: #1a1a1a;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        z-index: 1000;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-menu.active {
        display: flex;
        transform: translateX(0);
    }
    
    .nav-menu li { width: 100%; text-align: left; }
    .nav-menu li a { font-size: 1.2rem; display: block; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 10px; }
    
    .header-categories {
        /* Removed position: fixed, inherits normal flow in fixed parent */
        width: 100%;
        background: #ffffff;
        overflow-x: auto;
        padding: 8px 0;
        -webkit-overflow-scrolling: touch;
        border-bottom: 1px solid #eee;
    }
    
    .cat-label { display: none; }
    
    .cat-list {
        padding-left: 15px;
        white-space: nowrap;
        display: flex;
        gap: 15px;
        padding-right: 15px;
    }
    
    .cat-item { display: inline-block; flex-shrink: 0; }
    .cat-item .nav-dropdown { display: none !important; } /* Disable dropdowns on mobile row */
    
    .mobile-menu-toggle {
        display: block !important;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }

    /* Scaling Typography */
    h1, .hero h1, .page-header h1, .pd-v2-title { font-size: 2.2rem !important; line-height: 1.1 !important; }
    h2, .section-header h2 { font-size: 1.8rem !important; }
    .hero p, .page-header p { font-size: 1rem !important; }
    
    /* Footer Grid */
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr !important; gap: 40px !important; }
    footer { padding: 60px 0 !important; }
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('../assets/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--secondary);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Intro Section */
.intro .intro-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.features-mini {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.feat-item {
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feat-item i {
    color: var(--secondary);
}

/* Category Cards */
.cat-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.cat-card:hover {
    transform: translateY(-10px);
}

.cat-img {
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 4px;
}

.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.cat-card:hover .cat-img img {
    transform: scale(1.1);
}

.cat-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cat-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Page Header */
.page-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header.product-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1a1a;
}

.page-header.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Products Detail Page Styles */
.product-category-block {
    margin-bottom: 80px;
}

.category-info {
    margin-bottom: 30px;
    border-left: 4px solid var(--secondary);
    padding-left: 20px;
}

.category-info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.spec {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 10px;
    border-top: 1px solid var(--accent);
}

.price {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 700;
}

.btn-dark {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

.btn-dark:hover {
    background-color: var(--primary);
    color: var(--white) !important;
}

/* About Us Extra Styles */
.align-center {
    align-items: center;
}

.why-card {
    background: var(--white);
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Contact Page Styles */
.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-top: 5px;
}

.info-item h4 {
    margin-bottom: 5px;
}

.whatsapp-box {
    background: #e7f9ee;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

/* Gallery Styles */
.gallery-grid {
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Before After Styles */
.ba-card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.ba-images {
    display: flex;
    gap: 10px;
    position: relative;
    margin-bottom: 20px;
}

.ba-images img {
    width: 50%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.ba-label {
    position: absolute;
    top: 10px;
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    z-index: 10;
}

.ba-label.before {
    left: 10px;
    background: #333;
    color: white;
}

.ba-label.after {
    right: 10px;
    background: var(--secondary);
    color: white;
}

.ba-card h3 {
    font-size: 1.2rem;
}

.footer h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer h3 span { color: var(--secondary); }

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.footer ul li {
    margin-bottom: 15px;
}

.footer ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer ul li i {
    color: var(--secondary);
    margin-right: 10px;
}

.socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.socials a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.socials a:hover {
    background: var(--secondary);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.8);
}

/* Responsive */
@media (max-width: 992px) {
    .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    .section { padding: 60px 0; }
    
    .mobile-menu-toggle {
        display: block !important;
    }
}
/* Master Product Detail Redesign (Apple-inspired / 60-40) */
.pd-v2 {
    background: #ffffff;
    padding-top: 100px;
    padding-bottom: 100px;
    font-family: var(--font-body);
}

.pd-v2-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.pd-v2-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Close to 60/40 */
    gap: 100px;
    align-items: start;
}

/* Breadcrumb Navigation */
.pd-v2-breadcrumb {
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pd-v2-breadcrumb a {
    color: var(--text-muted);
    transition: color 0.3s;
}

.pd-v2-breadcrumb a:hover {
    color: var(--secondary);
}

.pd-v2-breadcrumb i {
    font-size: 0.7rem;
    color: #ccc;
}

/* Left Side: Product Image & Gallery */
.pd-v2-image-column {
    position: sticky;
    top: 120px;
}

.pd-v2-main-image-wrap {
    background: #f9f9fb;
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 80px rgba(0,0,0,0.04);
    margin-bottom: 20px;
}

.pd-v2-main-image-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.12));
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease;
}

.pd-v2-main-image-wrap:hover img {
    transform: scale(1.03);
}

/* Gallery Thumbnails */
.pd-v2-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.pd-v2-thumb {
    aspect-ratio: 1;
    background: #f9f9fb;
    border: 2px solid transparent;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pd-v2-thumb:hover {
    border-color: #eee;
}

.pd-v2-thumb.active {
    border-color: var(--secondary);
    box-shadow: 0 5px 15px rgba(201, 166, 107, 0.2);
}

.pd-v2-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lifestyle Image Section */
.pd-v2-lifestyle-wrap {
    margin-top: 60px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 400px;
}

.pd-v2-lifestyle-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-v2-lifestyle-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Right Side: Product Information */
.pd-v2-info-column {
    padding-top: 20px;
}

.pd-v2-category {
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: block;
}

.pd-v2-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.05;
    color: var(--primary);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.pd-v2-desc-short {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.pd-v2-price-wrap {
    margin-bottom: 45px;
}

.pd-v2-price-label {
    display: block;
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 5px;
}

.pd-v2-price-tag {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: baseline;
    gap: 5px;
}

/* CTA Buttons */
.pd-v2-cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 60px;
}

.pd-v2-btn-primary {
    background: var(--primary);
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 22px 40px;
    border-radius: 100px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.pd-v2-btn-primary:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.pd-v2-btn-secondary {
    background: #25d366;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 18px 30px;
    border-radius: 100px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.pd-v2-btn-secondary:hover {
    background: #1eb956;
    transform: scale(1.02);
}

/* Feature Grid */
.pd-v2-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.pd-v2-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pd-v2-f-icon {
    width: 48px;
    height: 48px;
    background: #f0f0f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.pd-v2-f-text span {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
}

.pd-v2-f-text small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Specifications Table */
.pd-v2-specs-section h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.pd-v2-spec-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.pd-v2-spec-label {
    font-weight: 600;
    color: var(--text-muted);
}

.pd-v2-spec-val {
    font-weight: 700;
    color: var(--primary);
}

/* Related Products V2 */
.related-v2 {
    padding-top: 120px;
    border-top: 1px solid #f0f0f0;
}

@media (max-width: 1200px) {
    .pd-v2-grid { gap: 60px; }
    .pd-v2-title { font-size: 3.2rem; }
}

@media (max-width: 992px) {
    .pd-v2-grid { grid-template-columns: 1fr; gap: 60px; }
    .pd-v2-image-column { position: relative; top: 0; }
    .pd-v2-title { font-size: 2.8rem; }
    .pd-v2-container { padding: 0 25px; }
    .pd-v2-main-image-wrap { padding: 40px; }
}

@media (max-width: 768px) {
    .pd-v2-breadcrumb { margin-bottom: 30px; font-size: 0.8rem; }
    .pd-v2-feature-grid { grid-template-columns: 1fr; }
    .pd-v2-title { font-size: 2.2rem; }
    .pd-v2-price-tag { font-size: 2.2rem; }
    
    .pd-v2-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .pd-v2-btn-primary, .pd-v2-btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .pd-v2-main-image-wrap { padding: 30px !important; border-radius: 15px !important; }
    .pd-v2-lifecycle-wrap { height: 250px !important; margin-top: 30px !important; }
    .pd-v2-lifestyle-overlay { bottom: 15px !important; left: 15px !important; }
    .pd-v2-lifestyle-overlay h3 { font-size: 1.2rem !important; }
    .pd-v2-desc-short { font-size: 1rem !important; }
    .pd-v2-f-icon { width: 40px !important; height: 40px !important; }
    
    /* Before After Refinement */
    .ba-images img { height: 150px !important; }
    .ba-label { font-size: 0.65rem !important; padding: 3px 6px !important; }
    
    /* Contact Form Refinement */
    .contact-form { padding: 25px !important; }
    .info-item { gap: 15px !important; margin-bottom: 20px !important; }
    
    /* Global Section Spacing */
    .section { padding: 40px 0 !important; }
    .section-header { margin-bottom: 30px !important; }
}
