/* ============================================
   Good Worth Creation - Modern Redesign CSS
   Furniture & Handicraft Website
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #1a1a1a;
    --secondary: #8B6F47;
    --accent: #C4956A;
    --warm: #D4A574;
    --light: #F8F5F1;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E8E8E8;
    --gray-300: #D1D1D1;
    --gray-500: #888888;
    --gray-600: #666666;
    --gray-700: #555555;
    --gray-800: #333333;
    --gray-900: #1a1a1a;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--gray-900);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 12px 0; font-family: var(--font-heading); }
p { margin: 0 0 14px 0; }

/* --- Container --- */
.container, .container-modern {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* --- Bootstrap Grid Compat --- */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}
.row > [class*="col-"] { padding: 0 12px; }
.col-md-3 { width: 25%; }
.col-md-4 { width: 33.333%; }
.col-md-5 { width: 41.666%; }
.col-md-6 { width: 50%; }
.col-md-7 { width: 58.333%; }
.col-md-8 { width: 66.666%; }
.col-md-9 { width: 75%; }
.col-md-12, .col-lg-3, .col-lg-6, .col-lg-12, .col-xl-3, .col-xl-9 { width: 100%; }
@media (min-width: 768px) {
    .col-lg-3 { width: 25%; }
    .col-lg-6 { width: 50%; }
    .col-lg-12 { width: 100%; }
}
.col-sm-4 { width: 33.333%; }
.col-sm-8 { width: 66.666%; }
.col-xs-6 { width: 50%; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.pull-left { float: left; }
.clearfix::after, .clearfix1::after { content: ''; display: table; clear: both; }

/* --- Utility Classes --- */
.pt-80 { padding-top: 60px; }
.pb-50, .pb-80, .ptb-80 { padding-bottom: 60px; }
.mt-1 { margin-top: 10px; }

/* --- Form Controls --- */
.form-control {
    display: block;
    width: 100%;
    padding: 13px 18px;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(139,111,71,0.08);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-group { margin-bottom: 22px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}
.form-group label span { color: #c0392b; }

/* --- Buttons --- */
.btn-primary-modern {
    display: inline-block;
    padding: 16px 44px;
    background: var(--secondary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--secondary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    text-align: center;
}
.btn-primary-modern:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-modern {
    display: inline-block;
    padding: 16px 44px;
    background: transparent;
    color: var(--gray-900);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    text-align: center;
}
.btn-outline-modern:hover {
    background: var(--gray-900);
    color: var(--white);
    border-color: var(--gray-900);
    transform: translateY(-2px);
}

.btn-outline-light {
    display: inline-block;
    padding: 16px 44px;
    background: transparent;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--gray-900);
    border-color: var(--white);
}

input[type="submit"], .wpcf7-submit {
    display: inline-block;
    padding: 14px 40px;
    background: var(--secondary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--secondary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}
input[type="submit"]:hover, .wpcf7-submit:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   ANNOUNCEMENT BAR
   ================================================================ */
.announcement-bar {
    background: var(--primary);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    letter-spacing: 0.3px;
}
.announcement-bar a { color: var(--accent); }
.announcement-bar a:hover { color: var(--warm); }
.announcement-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.announcement-links .left-info { display: flex; gap: 24px; align-items: center; }
.announcement-links .left-info i { margin-right: 6px; color: var(--accent); }
.announcement-links .right-links { display: flex; gap: 16px; }
.announcement-links .right-links a { color: rgba(255,255,255,0.75); font-size: 13px; }
.announcement-links .right-links a:hover { color: var(--white); }

/* ================================================================
   HEADER
   ================================================================ */
.main-header {
    background: var(--white);
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo-area img { max-height: 50px; width: auto; }

/* --- Main Navigation --- */
.main-nav { display: flex; align-items: center; }
.main-nav > ul { display: flex; list-style: none; margin: 0; padding: 0; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-800);
    position: relative;
    font-family: var(--font-body);
}
.main-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.main-nav > ul > li:hover > a::after,
.main-nav > ul > li.active > a::after { transform: scaleX(1); }
.main-nav > ul > li > a:hover { color: var(--secondary); }

/* --- Dropdown --- */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    padding: 12px 0;
    box-shadow: var(--shadow-xl);
    border-radius: 0 0 var(--radius) var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s ease;
    z-index: 1001;
}
.main-nav > ul > li:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a { display: block; padding: 10px 24px; font-size: 14px; color: var(--gray-600); }
.nav-dropdown a:hover { color: var(--secondary); background: var(--light); padding-left: 30px; }
.nav-dropdown .dropdown-title {
    padding: 10px 24px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 6px;
}

/* --- Header Actions --- */
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-actions a {
    font-size: 18px;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}
.header-actions a:hover { color: var(--secondary); }
.cart-badge {
    background: var(--secondary);
    color: var(--white);
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: absolute;
    top: -6px;
    right: -8px;
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    color: var(--gray-900);
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    background: var(--primary);
}
.hero-slider { position: relative; width: 100%; height: 100%; }
.hero-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
    display: flex; align-items: center; justify-content: center; text-align: center;
    z-index: 2;
}
.hero-content { color: var(--white); max-width: 800px; padding: 0 24px; }
.hero-content .subtitle {
    font-size: 12px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    font-weight: 500;
    display: inline-block;
    border: 1px solid rgba(196,149,106,0.4);
    padding: 8px 24px;
    border-radius: 4px;
}
.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
    font-style: normal;
}
.hero-content > p {
    font-size: 17px; opacity: 0.9; margin-bottom: 40px; line-height: 1.8;
    max-width: 600px; margin-left: auto; margin-right: auto;
}

/* Hero Dots */
.hero-dots {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 3;
}
.hero-dots .dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: rgba(255,255,255,0.4); cursor: pointer;
    transition: var(--transition); border: none;
}
.hero-dots .dot.active { background: var(--white); transform: scale(1.2); }

/* ================================================================
   SECTION HEADERS
   ================================================================ */
.section-header { text-align: center; margin-bottom: 55px; }
.section-header .section-subtitle,
.section-subtitle {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    display: block;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    color: var(--gray-900);
    margin-bottom: 16px;
}
.section-header p {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ================================================================
   CATEGORIES SECTION (Homepage)
   ================================================================ */
.categories-section { padding: 100px 0; background: var(--white); }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    height: 350px;
    cursor: pointer;
    background: var(--gray-100);
    display: block;
}
.category-card-large {
    /* same as regular on this grid */
}
.category-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute; top: 0; left: 0;
}
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 36px 28px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    z-index: 2;
}
.category-card-overlay h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 6px;
}
.category-card-overlay span {
    font-size: 12px;
    opacity: 0.85;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-body);
}

/* ================================================================
   PRODUCTS SECTION (Homepage)
   ================================================================ */
.products-section { padding: 100px 0; background: var(--light); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: block;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card-img {
    position: relative; overflow: hidden;
    height: 280px;
    background: var(--gray-100);
}
.product-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-body { padding: 22px; text-align: center; }
.product-card-body h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--gray-900);
}
.product-card-body .product-action { margin-top: 10px; }
.product-card-body .product-action span {
    font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--secondary);
    font-family: var(--font-body);
}
.product-card:hover .product-action span { color: var(--primary); }

/* ================================================================
   FEATURES STRIP
   ================================================================ */
.features-strip { padding: 60px 0; background: var(--secondary); }
.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
}
.feature-item i {
    font-size: 28px;
    opacity: 0.85;
    flex-shrink: 0;
}
.feature-item h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}
.feature-item p {
    font-size: 12px;
    opacity: 0.75;
    margin: 0;
    line-height: 1.4;
}

/* ================================================================
   STORY / ABOUT SECTION (Homepage)
   ================================================================ */
.story-section { padding: 110px 0; background: var(--white); }
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.story-image { border-radius: var(--radius); overflow: hidden; }
.story-image img { width: 100%; height: 520px; object-fit: cover; }
.story-content .section-subtitle {
    font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--secondary); margin-bottom: 14px; font-weight: 600;
}
.story-content h2 {
    font-family: var(--font-heading);
    font-size: 38px; font-weight: 400; margin-bottom: 24px; line-height: 1.3;
}
.story-content p { font-size: 15px; color: var(--gray-600); line-height: 1.85; margin-bottom: 16px; }

/* ================================================================
   INFRASTRUCTURE SECTION (Homepage + About)
   ================================================================ */
.infra-section { padding: 100px 0; background: var(--light); }
.about-infra { background: var(--white); }
.infra-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.infra-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.infra-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.infra-item:hover img { transform: scale(1.05); }

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
    padding: 90px 0;
    background: var(--primary);
    text-align: center;
    color: var(--white);
    position: relative;
}
.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 40px; font-weight: 400; margin-bottom: 18px;
}
.cta-banner p {
    font-size: 16px;
    opacity: 0.75;
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ================================================================
   PAGE HERO (Inner Pages)
   ================================================================ */
.page-hero {
    position: relative;
    background: var(--primary);
    padding: 80px 0 60px;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(139,111,71,0.15) 0%, transparent 60%);
    z-index: 1;
}
.page-hero-sm { padding: 60px 0 40px; }
.page-hero-overlay {
    position: relative;
    z-index: 2;
}
.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 14px;
}
.breadcrumb-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}
.breadcrumb-modern a { color: rgba(255,255,255,0.7); }
.breadcrumb-modern a:hover { color: var(--accent); }
.breadcrumb-modern i { font-size: 10px; }
.breadcrumb-modern span { color: var(--accent); }

/* ================================================================
   PRODUCT LISTING PAGE
   ================================================================ */
.product-listing-section { padding: 60px 0 80px; background: var(--light); }
.product-listing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.results-count { font-size: 14px; color: var(--gray-500); }

.product-listing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-listing-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: block;
}
.product-listing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.product-listing-img {
    position: relative;
    overflow: hidden;
    height: 260px;
    background: var(--gray-100);
}
.product-listing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-listing-card:hover .product-listing-img img { transform: scale(1.06); }
.product-listing-hover {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26,26,26,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.product-listing-hover span {
    background: var(--white);
    color: var(--gray-900);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.product-listing-card:hover .product-listing-hover { opacity: 1; }
.product-listing-info {
    padding: 18px 20px;
    text-align: center;
}
.product-listing-info h3 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--gray-900);
}
.view-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--secondary);
    font-family: var(--font-body);
}
.product-listing-card:hover .view-link { color: var(--primary); }

/* ================================================================
   PRODUCT DETAIL PAGE
   ================================================================ */
.product-detail-section { padding: 60px 0 80px; }
.product-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Product Gallery */
.product-gallery {}
.product-main-image {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-100);
    margin-bottom: 16px;
}
.product-main-image img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    background: var(--gray-50);
}
.product-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}
.product-thumbnails .thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    flex-shrink: 0;
    transition: var(--transition);
}
.product-thumbnails .thumb.active { border-color: var(--secondary); }
.product-thumbnails .thumb:hover { border-color: var(--gray-300); }
.product-thumbnails .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    color: var(--gray-900);
    margin-bottom: 28px;
    line-height: 1.3;
}
.product-meta {
    border-top: 1px solid var(--gray-200);
    padding-top: 20px;
    margin-bottom: 28px;
}
.product-meta-item {
    display: flex;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
}
.meta-label {
    width: 140px;
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-500);
}
.meta-value {
    font-size: 15px;
    color: var(--gray-800);
    line-height: 1.6;
}

.product-actions-detail {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.product-actions-detail .btn-primary-modern,
.product-actions-detail .btn-outline-modern {
    padding: 14px 32px;
}
.product-actions-detail .clickaddcartopt { border: none; }

.product-trust {
    background: var(--light);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.trust-item {
    font-size: 13px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}
.trust-item i { color: var(--secondary); }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-intro-section { padding: 80px 0; }
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-intro-image { border-radius: var(--radius); overflow: hidden; }
.about-intro-image img { width: 100%; height: 450px; object-fit: cover; }
.about-intro-content .section-subtitle { margin-bottom: 14px; }
.about-intro-content h2 {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 24px;
}
.about-intro-content p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.85;
}

.about-products-section { padding: 80px 0; background: var(--light); }
.about-product-list p {
    font-size: 16px;
    color: var(--gray-600);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.product-tags span {
    display: inline-block;
    padding: 10px 20px;
    background: var(--white);
    border-radius: 50px;
    font-size: 14px;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.product-tags span:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Wood Types */
.wood-types-section { padding: 80px 0; }
.wood-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.wood-type-card {
    text-align: center;
    padding: 50px 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}
.wood-type-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}
.wood-type-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.wood-type-icon i { font-size: 28px; color: var(--secondary); }
.wood-type-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
}
.wood-type-card p { font-size: 14px; color: var(--gray-600); line-height: 1.75; margin: 0; }

/* Strengths */
.strengths-section { padding: 80px 0; background: var(--light); }
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.strength-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.strength-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.strength-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.strength-icon i { font-size: 22px; color: var(--secondary); }
.strength-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
}
.strength-card p { font-size: 14px; color: var(--gray-600); line-height: 1.75; margin: 0; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-section { padding: 70px 0 90px; }
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    align-items: start;
}

.contact-form-area h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 10px;
}
.form-intro { font-size: 15px; color: var(--gray-500); margin-bottom: 30px; }
.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Alerts */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* Cart Items in Contact */
.cart-items-section {
    background: var(--light);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}
.cart-items-section h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gray-800);
}
.cart-items-list { display: flex; flex-direction: column; gap: 12px; }
.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
}
.cart-item-img {
    width: 60px; height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-family: var(--font-body); font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.cart-item-code { font-size: 12px; color: var(--gray-500); }
.cart-item-qty { width: 70px; }
.cart-item-qty .form-control { padding: 8px 10px; text-align: center; font-size: 14px; }
.cart-item-remove {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-500);
    transition: var(--transition);
    flex-shrink: 0;
}
.cart-item-remove:hover { background: #fef2f2; color: #dc2626; }

/* Captcha */
.captcha-group { margin-bottom: 24px; }
.captcha-group label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 500; color: var(--gray-700); }
.captcha-row { display: flex; align-items: center; gap: 12px; }
.captcha-image img { height: 40px; border-radius: 4px; }
.captcha-row .form-control { max-width: 200px; }

/* Contact Info Sidebar */
.contact-info-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 36px 30px;
    margin-bottom: 20px;
}
.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
}
.contact-info-card > p { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; }
.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.contact-detail-icon i { font-size: 16px; color: var(--secondary); }
.contact-detail h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}
.contact-detail p { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin: 0; }
.contact-detail a { color: var(--secondary); }
.contact-detail a:hover { color: var(--primary); }

.contact-social-card {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 28px 30px;
    text-align: center;
}
.contact-social-card h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.contact-social-links { display: flex; gap: 10px; justify-content: center; }
.contact-social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}
.contact-social-links a:hover { background: var(--secondary); border-color: var(--secondary); }

/* ================================================================
   FOOTER
   ================================================================ */
.modern-footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { max-height: 45px; margin-bottom: 20px; filter: invert(1) brightness(2); }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 14px;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--secondary); border-color: var(--secondary); color: var(--white); }
.footer-col h4 {
    color: var(--white); font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 24px;
    font-family: var(--font-body);
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.5); }
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact-item i { color: var(--secondary); font-size: 14px; margin-top: 3px; }
.footer-contact-item span { font-size: 14px; line-height: 1.6; }
.footer-contact-item a { color: rgba(255,255,255,0.5); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
    padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13px; color: rgba(255,255,255,0.3);
}

/* ================================================================
   SCROLL TO TOP
   ================================================================ */
.scroll-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    background: var(--secondary); color: var(--white);
    border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; cursor: pointer;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    z-index: 999; box-shadow: var(--shadow-lg);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary); transform: translateY(-3px); }

/* Hide old elements */
#back_to_top { display: none !important; }
.loading-sec { display: none !important; }

/* Old inner page compat */
.new-product-area, .product-listing-page, .all-hyperion-page, .contuct-form-area,
.page-title-wrapper, .section-title { padding: 20px 0; }
.page-title-wrapper { background: var(--light); padding: 40px 0; margin-bottom: 30px; }
.page-title h3, .section-title h2 {
    font-family: var(--font-heading); font-size: 30px; font-weight: 400;
    color: var(--gray-900); margin-bottom: 10px;
}
.section-title p { font-size: 15px; color: var(--gray-700); line-height: 1.8; }
.section-title ul { list-style: disc; padding-left: 20px; margin: 10px 0; }
.section-title ul li { font-size: 15px; color: var(--gray-700); line-height: 1.8; margin-bottom: 6px; }

/* Enquiry btn compat */
.enquiry_btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--secondary);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    margin-right: 10px;
    margin-top: 10px;
}
.enquiry_btn:hover { background: var(--primary); }
.enquiry_btn a { color: var(--white); }

/* Detail page compat */
.dtl_inner { margin-bottom: 20px; }
.pto_detl { margin-bottom: 12px; }
.pto_detl p { font-size: 14px; color: var(--gray-700); line-height: 1.7; margin: 0; }
.pto_detl span { font-weight: 600; color: var(--gray-800); }
.sinple-c-title h3 {
    font-family: var(--font-heading); font-size: 24px; font-weight: 400;
    margin-bottom: 16px;
}
.tab-content { margin-bottom: 16px; }
.tab-pane { display: none; }
.tab-pane.show, .tab-pane.active { display: block; }
.sinple-tab-menu { display: flex; gap: 8px; padding: 0; }
.sinple-tab-menu li a {
    display: block;
    width: 70px; height: 70px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
}
.sinple-tab-menu li a.active { border-color: var(--secondary); }
.sinple-tab-menu li a img { width: 100%; height: 100%; object-fit: cover; }

/* Image Gallery compat */
.img-galery .imgset {
    border: none !important;
    padding: 0 !important;
    margin-bottom: 16px !important;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.img-galery img {
    width: 100% !important;
    height: 200px;
    object-fit: cover;
    border: none !important;
    border-radius: var(--radius);
    transition: transform 0.4s ease;
}
.img-galery .imgset:hover img { transform: scale(1.05); }

/* Product old compat */
.single-new-product {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin-bottom: 20px;
    border: none !important;
}
.single-new-product:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.single-new-product .product-img { overflow: hidden; background: var(--gray-100); }
.single-new-product .product-img img,
.single-new-product .product-img .img {
    width: 100% !important; height: 220px !important; object-fit: cover;
    min-width: 100% !important; transition: transform 0.5s ease;
    display: block; margin: 0 !important;
}
.single-new-product:hover .product-img img { transform: scale(1.05); }
.single-new-product .product-content { padding: 16px; }
.single-new-product .product-content h3 {
    font-family: var(--font-heading); font-size: 15px; font-weight: 400;
    color: var(--gray-900); margin: 0;
}

/* Contact form compat */
.contuct-form_area { padding: 20px 0; }
.contuct_f { margin-bottom: 16px; }
.contuct_f label { font-weight: 500; font-size: 14px; margin-bottom: 6px; display: block; color: var(--gray-700); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .categories-grid { grid-template-columns: 1fr 1fr; }
    .products-grid, .product-listing-grid { grid-template-columns: repeat(3, 1fr); }
    .story-grid, .about-intro-grid { gap: 40px; }
    .product-detail-grid { gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .features-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .contact-grid { grid-template-columns: 1fr; }
    .strengths-grid, .wood-types-grid { grid-template-columns: repeat(2, 1fr); }
    .btn-primary-modern, .btn-outline-modern, .btn-outline-light { padding: 14px 36px; }
}

@media (max-width: 768px) {
    .announcement-bar { display: none; }
    .main-header { padding: 10px 0; }

    /* Mobile Nav */
    .main-nav {
        display: none;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        padding: 20px;
        z-index: 1002;
    }
    .main-nav.open { display: block; }
    .main-nav > ul { flex-direction: column; }
    .main-nav > ul > li > a { padding: 12px 0; font-size: 14px; }
    .main-nav > ul > li > a::after { display: none; }
    .nav-dropdown {
        position: static; opacity: 1; visibility: visible;
        transform: none; box-shadow: none; padding: 0 0 0 20px;
        display: none;
    }
    .nav-dropdown.open {
        display: block;
    }
    .nav-dropdown a { font-size: 13px; padding: 8px 16px; }
    .main-nav > ul > li > a .fa-chevron-down {
        transition: transform 0.3s ease;
    }
    .main-nav > ul > li > a.dropdown-open .fa-chevron-down {
        transform: rotate(180deg);
    }
    .mobile-toggle { display: block; }

    /* Logo */
    .logo-area img { max-height: 40px; }

    /* Hero */
    .hero-section { height: 70vh; min-height: 450px; }
    .hero-content h1 { font-size: 36px; }
    .hero-content > p { font-size: 15px; }
    .hero-buttons { flex-direction: column; align-items: center; }

    /* Sections */
    .categories-section, .products-section, .story-section, .infra-section { padding: 60px 0; }
    .section-header { margin-bottom: 36px; }
    .section-header h2 { font-size: 30px; }

    .categories-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .category-card { height: 240px; }

    .products-grid, .product-listing-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .product-card-img, .product-listing-img { height: 200px; }

    .story-grid, .about-intro-grid, .product-detail-grid { grid-template-columns: 1fr; gap: 30px; }
    .story-image img, .about-intro-image img { height: 300px; }
    .story-content .btn-outline-modern { display: block; text-align: center; }

    .features-row { grid-template-columns: 1fr 1fr; gap: 16px; }
    .feature-item { gap: 10px; }
    .feature-item i { font-size: 22px; }

    .infra-grid { grid-template-columns: repeat(2, 1fr); }

    .page-hero h1 { font-size: 32px; }

    .product-main-image img { height: 350px; }

    /* Product meta labels */
    .meta-label { width: 110px; }
    .product-thumbnails .thumb { width: 65px; height: 65px; }

    /* Product actions stack */
    .product-actions-detail { flex-direction: column; }
    .product-actions-detail .btn-primary-modern,
    .product-actions-detail .btn-outline-modern { width: 100%; text-align: center; }

    /* Product trust badges */
    .product-trust { flex-direction: column; gap: 8px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .cta-banner h2 { font-size: 28px; }
    .cta-banner { padding: 60px 0; }

    /* Contact form */
    .form-row-2col { grid-template-columns: 1fr 1fr; gap: 14px; }

    /* Cart items */
    .cart-item { gap: 12px; }
    .cart-item-img { width: 50px; height: 50px; }
    .cart-item-qty { width: 60px; }
    .cart-item-info h4 { font-size: 13px; }

    /* Contact sidebar */
    .contact-detail-icon { width: 38px; height: 38px; font-size: 14px; }
    .contact-social-links a { width: 38px; height: 38px; }

    /* Captcha */
    .captcha-row { flex-direction: column !important; align-items: flex-start !important; }
    .captcha-row .form-control { max-width: 100% !important; }

    /* Breadcrumb */
    .breadcrumb-modern { flex-wrap: wrap; gap: 8px; }

    /* Scroll to top */
    .scroll-top { width: 40px; height: 40px; bottom: 16px; right: 16px; font-size: 16px; }

    .strengths-grid, .wood-types-grid { grid-template-columns: 1fr; }

    .about-intro-content h2 { font-size: 28px; }
    .about-products-section, .wood-types-section, .strengths-section { padding: 50px 0; }
}

@media (max-width: 480px) {
    .container, .container-modern { padding: 0 16px; }

    .products-grid, .product-listing-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 28px; }
    .hero-section { height: 60vh; min-height: 380px; }
    .btn-primary-modern, .btn-outline-modern, .btn-outline-light { padding: 13px 28px; font-size: 11px; }
    .category-card { height: 200px; }
    .categories-grid { grid-template-columns: 1fr; gap: 10px; }
    .features-row { grid-template-columns: 1fr; }
    .infra-grid { grid-template-columns: 1fr; }
    .product-main-image img { height: 250px; }
    .product-title { font-size: 22px; }
    .page-hero h1 { font-size: 24px; }
    .section-header h2 { font-size: 24px; }
    .page-hero { min-height: 120px; }

    /* Product meta */
    .meta-label { width: 100px; font-size: 11px; }
    .meta-value { font-size: 13px; }
    .product-thumbnails .thumb { width: 55px; height: 55px; }

    /* Form */
    .form-row-2col { grid-template-columns: 1fr; gap: 0; }

    /* Cart items */
    .cart-item { flex-wrap: wrap; gap: 10px; }
    .cart-item-img { width: 45px; height: 45px; }
    .cart-item-info { flex: 1; min-width: 0; }
    .cart-item-info h4 { font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .cart-item-qty { width: 55px; }
    .cart-item-qty .form-control { padding: 4px 6px; font-size: 12px; }

    /* Contact */
    .contact-detail-icon { width: 34px; height: 34px; font-size: 13px; }
    .contact-social-links a { width: 36px; height: 36px; font-size: 13px; }

    /* Footer */
    .footer-grid { gap: 24px; }
    .footer-col h4 { font-size: 16px; }

    /* Logo */
    .logo-area img { max-height: 36px; }

    /* Scroll to top */
    .scroll-top { width: 36px; height: 36px; bottom: 12px; right: 12px; font-size: 14px; }
}
