:root {
    --primary: #111111;
    --accent: #c5a059;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --gray: #777777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--primary);
    line-height: 1.6;
}

/* Top Bar */
.top-bar {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    letter-spacing: 1px;
}

.top-bar span {
    color: var(--accent);
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: var(--accent);
}

.header-icons {
    display: flex;
    gap: 20px;
    font-size: 18px;
    cursor: pointer;
}

.header-icons i:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn {
    background: var(--accent);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 2px;
    display: inline-block;
}

.btn:hover {
    background: #b08d46;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin: 60px 0 20px;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 15px;
}

/* Grid System */
.container {
    width: 84%;
    margin: auto;
    padding-bottom: 60px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    position: relative;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
    text-align: center;
}

.card-body h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.card-body p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.price {
    color: var(--accent);
    font-weight: 600;
    font-size: 16px;
}

/* Promo Banner */
.promo-banner {
    background: var(--bg-light);
    padding: 80px 0;
    text-align: center;
    margin: 40px 0;
}

.promo-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    margin-bottom: 15px;
}

.promo-banner p {
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto 30px;
}

/* Contact Page Specific Styles */
.contact-section {
    width: 60%;
    margin: 50px auto;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

.contact-form textarea {
    height: 150px;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 50px 8% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 13px;
    color: var(--gray);
}

@media(max-width: 768px) {
    nav { display: none; }
    .hero h1 { font-size: 36px; }
    .contact-section { width: 90%; }
}

/* =========================================================
   JEANS & BAGS FABRICS CATALOG STYLES
   ========================================================= */

.fabrics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px 20px;
}

.fabrics-header {
    text-align: center;
    margin-bottom: 40px;
}

.fabrics-title {
    font-size: 2.2rem;
    color: #0f172a;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fabrics-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    margin-top: 8px;
}

/* Category Banner Dividers */
.fabric-category-banner {
    background: #1e293b;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 40px 0 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.fabric-category-banner.jeans-theme {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
}

.fabric-category-banner.bags-theme {
    background: linear-gradient(135deg, #0f766e, #0d9488);
}

/* Grid Layout */
.fabrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* Fabric Card Styling */
.fabric-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.fabric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.fabric-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.fabric-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fabric-card-body h3 {
    font-size: 1.2rem;
    color: #0f172a;
    margin-bottom: 8px;
    font-weight: 700;
}

.fabric-card-body p {
    font-size: 0.92rem;
    color: #475569;
    margin-bottom: 16px;
    flex-grow: 1;
    line-height: 1.5;
}

/* Specifications Badge List */
.fabric-spec-list {
    list-style: none;
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

.fabric-spec-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.fabric-spec-list li .label {
    font-weight: 600;
    color: #334155;
}

/* Mobile Responsive Adjustments */
@media (max-width: 640px) {
    .fabrics-grid {
        grid-template-columns: 1fr;
    }
    .fabrics-title {
        font-size: 1.75rem;
    }
    .fabric-category-banner {
        font-size: 1.1rem;
        padding: 12px 18px;
    }
}

/* =========================================================
   PERFECT SINGLE LINE HEADER STYLES
   ========================================================= */

/* Top Black Announcement Bar */
.top-bar {
    background-color: var(--primary, #111111);
    color: var(--white, #ffffff);
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    letter-spacing: 0.8px;
    width: 100%;
}

.top-bar span {
    color: var(--accent, #c5a059);
    font-weight: 600;
}

/* Header Container Single Line Alignment */
.main-header {
    background-color: var(--white, #ffffff);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    flex-wrap: nowrap; /* Elements ko break hone se rokta hai */
}

/* Logo Alignment */
.logo {
    white-space: nowrap;
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary, #111111);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.logo a span {
    color: var(--accent, #c5a059);
}

/* Navbar Container */
.navbar {
    display: flex;
    align-items: center;
}

.navbar .nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.navbar .nav-links > li > a {
    text-decoration: none;
    color: var(--primary, #111111);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.navbar .nav-links > li > a:hover {
    color: var(--accent, #c5a059);
}

/* Smooth Dropdown Submenu Positioning Fix */
.nav-links .dropdown {
    position: relative;
}

.dropdown-icon {
    font-size: 11px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 210px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    list-style: none;
    padding: 10px 0;
    margin: 10px 0 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 9px 20px;
    color: #333333;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu li a:hover {
    background-color: #f8f9fa;
    color: var(--accent, #c5a059);
    padding-left: 24px;
}

/* Reveal Dropdown on Hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Right Side Action Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 18px;
}

.header-icons a {
    color: var(--primary, #111111);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.header-icons a:hover {
    color: var(--accent, #c5a059);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--accent, #c5a059);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Multi-Card Vertical Dropdown Styling */
/* Dropdown Container */
/* Dropdown Container Width badha di taaki text ko jagah mile */
.dropdown-menu.vertical-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 480px; /* 380px se badha kar 480px kar diya */
    max-height: 80vh;
    overflow-y: auto;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    
    scrollbar-width: thin;
    scrollbar-color: #c5a059 #f1f1f1;
}

.dropdown-menu.vertical-menu::-webkit-scrollbar {
    width: 5px;
}
.dropdown-menu.vertical-menu::-webkit-scrollbar-thumb {
    background: #c5a059;
    border-radius: 10px;
}

/* Menu Card */
.menu-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 10px;
    border: 1px solid #e9ecef;
}

.menu-card:last-child {
    margin-bottom: 0;
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px dashed #dee2e6;
}

.icon-box {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background-color: #2563eb;
    color: #ffffff;
    flex-shrink: 0;
}

.card-title h4 {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.2;
}

.card-title p {
    font-size: 10.5px;
    color: #64748b;
    margin: 2px 0 0 0;
}

/* Sublinks - Improved Spacing */
.card-sublinks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px; /* Spacing thodi badha di */
}

.card-sublinks li a {
    display: flex;
    align-items: flex-start; /* Multi-line align ke liye top aligned */
    gap: 8px;
    padding: 6px 8px;
    font-size: 11.5px;
    color: #334155;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    white-space: normal; /* FIX: Text cut hone ki jagah proper wrapping enable ki */
    line-height: 1.3;
}

.card-sublinks li a i {
    font-size: 11px;
    color: #c5a059;
    margin-top: 2px; /* Icon alignment fix */
    flex-shrink: 0;
}

.card-sublinks li a:hover {
    background-color: #e2e8f0;
    color: #0f172a;
}
/* =======================================================
   Clean & Fixed Footer Layout Styles
   ======================================================= */
/* =======================================================
   Footer Styling
   ======================================================= */
footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 60px 20px 20px;
    font-size: 14px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #1e293b;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.brand-col h4 span {
    color: #c5a059;
}

.brand-col p {
    line-height: 1.6;
    font-size: 13.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 13.5px;
}

.footer-links li a:hover {
    color: #c5a059;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13.5px;
}

.contact-info i {
    color: #c5a059;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #1e293b;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-links a:hover {
    background-color: #c5a059;
    color: #0f172a;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 13px;
    color: #64748b;
}

/* =======================================================
   Manufacturing Page Styling
   ======================================================= */
.hero-mfg {
    background: linear-gradient(rgba(17, 24, 39, 0.85), rgba(17, 24, 39, 0.85)), url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?q=80&w=1200&auto=format&fit=crop') center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 60px 20px;
}

.hero-mfg-content {
    max-width: 800px;
}

.hero-mfg-content h1 {
    font-size: 38px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.hero-mfg-content p {
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.6;
}

/* Stats Section */
.mfg-stats {
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 30px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    text-align: center;
}

.stat-box h2 {
    font-size: 28px;
    color: #c5a059;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* Process Rows */
.mfg-details {
    padding: 60px 20px;
}

.mfg-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.mfg-row.reverse {
    flex-direction: row-reverse;
}

.mfg-img {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mfg-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.mfg-img:hover img {
    transform: scale(1.04);
}

.mfg-text {
    flex: 1;
    position: relative;
}

.step-num {
    font-size: 48px;
    font-weight: 700;
    color: #f1f5f9;
    position: absolute;
    top: -30px;
    left: 0;
    z-index: -1;
}

.mfg-text h3 {
    font-size: 22px;
    color: #0f172a;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.mfg-text p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 15px;
}

.mfg-text ul {
    list-style: none;
    padding: 0;
}

.mfg-text ul li {
    font-size: 13.5px;
    color: #334155;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mfg-text ul li i {
    color: #c5a059;
}

/* Capabilities */
.mfg-capabilities {
    background-color: #0f172a;
    color: #ffffff;
    padding: 60px 20px;
}

.mfg-capabilities .section-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.cap-card {
    background: #1e293b;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #334155;
    text-align: center;
}

.cap-card i {
    font-size: 32px;
    color: #c5a059;
    margin-bottom: 15px;
}

.cap-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.cap-card p {
    font-size: 13.5px;
    color: #94a3b8;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mfg-row, .mfg-row.reverse {
        flex-direction: column;
    }
    .mfg-img img {
        height: 240px;
    }
}

/* =======================================================
   New Clean About Section Layout
   ======================================================= */
.animated-about-section {
    padding: 80px 20px;
    background-color: #f8fafc;
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

/* Visual Column & Grid Layout */
.about-visual-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 150px 150px;
    gap: 15px;
}

.gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.gallery-card.card-large {
    grid-row: span 2;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.img-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
}

/* Experience Card Design */
.experience-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.exp-icon {
    width: 50px;
    height: 50px;
    background: #c5a059;
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.exp-details h3 {
    margin: 0;
    font-size: 22px;
    color: #0f172a;
    font-weight: 700;
}

.exp-details p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }
}

/* =======================================================
   VZ TEXTILE & TRENDS - LIGHT SECTION WITH DARK CARDS
   ======================================================= */

/* Section background changed to Light White/Off-White */
.products-section {
    padding: 80px 20px;
    background-color: #f8fafc; /* Light Background (As requested) */
    color: #1e293b;
}

.products-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
}

.section-tag {
    color: #d4a359; /* Gold Accent */
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: #221d13; /* Tag background contrast */
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
}

/* Titles converted to Dark Color for white background */
.products-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #0f172a; /* Dark Text */
    margin-top: 12px;
}

.products-sub-title {
    color: #64748b; /* Soft Dark Text */
    font-size: 15px;
    margin-top: 10px;
}

.category-cards-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Outer Card Wrapper (Stays Dark Black Inside) */
.category-card {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 380px 1fr;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); /* Clean soft shadow on light BG */
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: #d4a359; /* Golden Glow Border on Hover */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Image Box */
.cat-image-box {
    width: 100%;
    height: 100%;
    min-height: 290px;
}

.cat-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content Box */
.cat-content-box {
    padding: 32px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header Top with Icon & Title */
.cat-header-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.cat-icon-badge {
    width: 46px;
    height: 46px;
    background-color: #221d13;
    color: #d4a359;
    border: 1px solid #d4a359;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.cat-header-top h3 {
    font-size: 22px;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
}

.cat-subtext {
    color: #888888;
    font-size: 13px;
    margin-top: 2px;
}

.cat-desc {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Sub-Categories Grid Links */
.sub-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding-top: 15px;
    border-top: 1px dashed #2a2a2a;
    margin-bottom: 25px;
}

.sub-cat-link {
    background: #1c1c1c;
    color: #e5e5e5;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #282828;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.sub-cat-link i {
    color: #d4a359; /* Golden Icon */
    font-size: 13px;
}

.sub-cat-link:hover {
    background-color: #d4a359;
    color: #000000;
    border-color: #d4a359;
}

.sub-cat-link:hover i {
    color: #000000;
}

/* Main Golden Button */
.view-btn {
    background: #d4a359; /* Gold Background */
    color: #000000; /* Dark Text */
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    transition: background 0.3s ease, transform 0.2s ease;
}

.view-btn:hover {
    background: #e6b76c;
    transform: translateX(4px);
}

/* Responsive Mobile View */
@media (max-width: 900px) {
    .category-card {
        grid-template-columns: 1fr;
    }
    
    .cat-image-box {
        height: 220px;
    }

    .sub-categories-grid {
        grid-template-columns: 1fr;
    }
}