/* --- CSS Variables & Resets --- */
:root {
    --primary-color: #E31B23; /* Trademark brand red */
    --primary-hover: #C2141B; /* Darker red hover state */
    --dark-color: #2D323E; /* Dark blue-grey from footer and text */
    --darker-color: #232833;
    --light-color: #FFFFFF;
    --bg-light: #F8F9FA;
    --text-color: #555555;
    --text-gray: #888888;
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Jost', sans-serif;
    
    --border-radius: 6px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--border-radius) var(--border-radius) 0 0; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; position: relative; }
.bg-light { background-color: var(--bg-light); }
.bg-white { background-color: var(--light-color); }
.section-padding { padding: 90px 0; }
.text-center { text-align: center; }

/* --- Typography Utilities --- */
.sub-title {
    display: block;
    color: var(--primary-color);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.sec-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.1;
}
@media (min-width: 768px) { .sec-title { font-size: 52px; } }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-body); font-size: 15px; font-weight: 500;
    padding: 12px 30px; border-radius: 4px; cursor: pointer;
    transition: var(--transition); border: none;
}
.btn-primary { background-color: var(--primary-color); color: var(--light-color); }
.btn-primary:hover { background-color: var(--dark-color); }

/* --- Header --- */
.header {
    position: relative; z-index: 1000;
    background: white; border-bottom: 1px solid #E5E5E5;
    transition: var(--transition); padding: 10px 0;
}
.header.sticky {
    position: fixed; top: 0; left: 0; width: 100%; background-color: white;
    padding: 6px 0; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; }
.logo img { height: 42px; display: block; width: auto; }

.main-nav ul { display: flex; gap: 30px; }
.main-nav a { color: var(--dark-color); font-weight: 500; font-size: 15px; }
.main-nav a:hover, .main-nav a.active { color: var(--primary-color); }

.header-action { display: flex; align-items: center; }
.mobile-toggle { display: none; color: var(--primary-color); font-size: 24px; cursor: pointer; }
@media (max-width: 991px) { .main-nav { display: none; } .mobile-toggle { display: block; } }

/* --- Hero Section --- */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(45, 50, 62, 0.7); }
.hero-content { position: relative; z-index: 2; max-width: 600px; }
.hero-content h1 { color: var(--light-color); font-size: 60px; margin-bottom: 20px; line-height: 1.1; }
.hero-content p { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 35px; }

/* --- Section Top (Projects/Blog Header) --- */
.section-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; flex-wrap: wrap; gap: 20px; }
.top-left { flex: 1; min-width: 300px; }
.top-right { flex: 1; min-width: 300px; }
.top-right p { color: var(--text-gray); margin-bottom: 20px; font-size: 15px; }

/* --- Grid & Cards --- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 991px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .grid-3 { grid-template-columns: 1fr; } }

.card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    border: 1px solid #EEEEEE;
    transition: var(--transition);
}
.card:hover { box-shadow: 0 15px 30px rgba(0,0,0,0.05); transform: translateY(-5px); }
.card-img img { width: 100%; height: 240px; object-fit: cover; }
.card-body { padding: 30px; }
.card-body h3 { font-size: 22px; margin-bottom: 15px; }
.card-body p { color: var(--text-gray); font-size: 15px; margin-bottom: 20px; line-height: 1.5; }
.read-more { color: var(--primary-color); font-weight: 500; font-size: 14px; display: inline-block; }

/* --- Blog Cards --- */
.blog-card { border: 1px solid #E5E5E5; border-radius: var(--border-radius); }
.blog-body { padding: 40px 30px; }
.blog-tag { background-color: var(--dark-color); color: white; font-size: 11px; padding: 5px 12px; border-radius: 3px; margin-right: 15px; display: inline-block; margin-bottom: 20px; }
.blog-date { color: #A0A0A0; font-size: 13px; }
.blog-card h3 { font-size: 24px; margin-bottom: 15px; line-height: 1.3; }

/* --- CTA Consultation Section --- */
.cta-consultation { position: relative; padding: 120px 0; display: flex; align-items: center; }
.cta-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; }
.cta-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(45, 50, 62, 0.85); }
.cta-box {
    position: relative; z-index: 2;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 60px 50px;
    max-width: 600px;
}
.cta-box h2 { color: var(--light-color); font-size: 48px; margin-bottom: 15px; }
.cta-box p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 30px; }

/* --- FAQ Section --- */
.faq-header { position: relative; margin-bottom: 50px; }
.faq-accordion { max-width: 900px; margin: 0 auto; }
.faq-item { border: 1px solid #E5E5E5; border-radius: var(--border-radius); margin-bottom: 15px; overflow: hidden; }
.faq-item.active { border-color: var(--primary-color); }
.faq-question {
    padding: 20px 25px; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    font-weight: 500; color: var(--dark-color); font-size: 16px;
}
.faq-item.active .faq-question { color: var(--primary-color); }
.faq-question i { color: var(--dark-color); }
.faq-item.active .faq-question i { color: var(--primary-color); }
.faq-answer { padding: 0 25px 20px; display: none; color: var(--text-color); font-size: 14.5px; line-height: 1.6; }

/* --- Footer --- */
.site-footer { background-color: var(--dark-color); color: #B0B3B8; padding-top: 80px; position: relative; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 30px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.05); }
@media (max-width: 991px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr; } }

.contact-box { display: flex; align-items: center; margin-bottom: 20px; }
.icon-wrap {
    width: 45px; height: 45px; border: 1px solid rgba(255,255,255,0.2); border-radius: 6px;
    display: flex; align-items: center; justify-content: center; margin-right: 15px; color: var(--light-color);
}
.text-wrap { display: flex; flex-direction: column; }
.text-wrap .label { color: var(--light-color); font-weight: 500; font-size: 15px; }
.text-wrap .value { color: var(--primary-color); font-size: 14px; }

.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 35px; height: 35px; border: 1px solid rgba(255,255,255,0.2); border-radius: 6px;
    display: flex; align-items: center; justify-content: center; color: #B0B3B8; transition: var(--transition);
}
.social-links a:hover { border-color: var(--primary-color); color: var(--primary-color); }

.footer-title { color: var(--light-color); font-family: var(--font-body); font-size: 16px; margin-bottom: 25px; }
.footer-menu li { margin-bottom: 12px; }
.footer-menu a { font-size: 14px; }
.footer-menu a:hover { color: var(--light-color); }

.newsletter-form { display: flex; }
.newsletter-form input {
    background-color: #434855; border: none; padding: 12px 15px; color: white;
    border-radius: 4px 0 0 4px; width: 100%; outline: none;
}
.newsletter-form button {
    background-color: var(--primary-color); color: white; border: none;
    padding: 0 20px; border-radius: 0 4px 4px 0; cursor: pointer; font-weight: 500;
}

.footer-bottom { padding: 30px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { display: flex; align-items: center; }
.footer-logo img { height: 32px; display: block; width: auto; }
.copyright { font-size: 13px; }
@media (max-width: 768px) { .footer-bottom { flex-direction: column; gap: 15px; text-align: center; } }

.back-to-top {
    position: absolute; right: 30px; bottom: 30px; width: 40px; height: 40px;
    background-color: var(--primary-color); color: white; display: flex;
    align-items: center; justify-content: center; border-radius: 4px;
}

/* --- Animations --- */
.fade-in { opacity: 0; transform: translateY(20px); transition: var(--transition); transition-duration: 0.8s; }
.slide-up { opacity: 0; transform: translateY(40px); transition: var(--transition); transition-duration: 0.8s; }
.reveal-up { opacity: 0; transform: translateY(30px); transition: var(--transition); transition-duration: 0.6s; }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.active { opacity: 1; transform: translate(0, 0); }

/* --- Split Layout --- */
.split-layout { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; margin-bottom: 80px; }
.split-left, .split-right { flex: 1; min-width: 300px; }
.split-image-wrap { border: 1px solid #E5E5E5; padding: 15px; border-radius: var(--border-radius); position: relative; }
.split-image-wrap img { border-radius: calc(var(--border-radius) - 5px); width: 100%; display: block; }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70px; height: 70px; background-color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; cursor: pointer; opacity: 0.9; transition: var(--transition); }
.play-btn:hover { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }

/* --- Contact & Phone Inline --- */
.action-row { display: flex; align-items: center; gap: 30px; margin-top: 30px; flex-wrap: wrap; }
.phone-inline { display: flex; align-items: center; gap: 15px; }
.phone-icon { width: 50px; height: 50px; border: 2px solid var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-color); font-size: 18px; }
.phone-text span { display: block; font-size: 13px; color: var(--text-gray); }
.phone-text strong { font-size: 18px; color: var(--dark-color); }

/* --- Stats Box --- */
.stats-banner { background: white; border: 1px solid #E5E5E5; border-radius: var(--border-radius); display: flex; justify-content: space-around; padding: 40px 20px; margin-bottom: 80px; flex-wrap: wrap; gap: 20px; }
.stat-item { text-align: center; }
.stat-item h3 { font-size: 50px; color: var(--primary-color); margin-bottom: 5px; }
.stat-item p { color: var(--text-gray); font-size: 15px; }

/* --- Progress Bars --- */
.progress-wrap { margin-top: 30px; }
.progress-item { margin-bottom: 25px; }
.progress-item .label { display: block; font-weight: 500; color: var(--dark-color); margin-bottom: 8px; font-size: 15px; }
.progress-bar { width: 100%; height: 10px; background-color: #E5E5E5; border-radius: 5px; overflow: hidden; }
.progress-fill { height: 100%; background-color: var(--primary-color); border-radius: 5px; }

/* --- Team Grid --- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 991px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .grid-4 { grid-template-columns: 1fr; } }
.team-card { border-radius: 12px; overflow: hidden; position: relative; height: 400px; }
.team-card img { width: 100%; height: 100%; object-fit: cover; }

/* --- Form Elements --- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; color: var(--dark-color); }
.form-label span { color: var(--primary-color); }
.form-control { width: 100%; padding: 15px 20px; border: 1px solid #E5E5E5; border-radius: var(--border-radius); font-family: var(--font-body); font-size: 15px; outline: none; transition: var(--transition); background: white; }
.form-control:focus { border-color: var(--primary-color); }
textarea.form-control { min-height: 150px; resize: vertical; }

/* --- Checkbox --- */
.checkbox-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; font-size: 14px; color: var(--text-gray); }
.checkbox-wrap a { color: var(--primary-color); }

/* --- Info Box Outline --- */
.info-box-outline { border: 1px solid #E5E5E5; border-radius: var(--border-radius); padding: 40px; margin-top: 30px; }
.info-box-outline h4 { font-size: 22px; margin-bottom: 15px; color: var(--dark-color); }
.info-box-outline p { color: var(--text-gray); font-size: 15px; line-height: 1.6; margin-bottom: 0; }

/* --- Feature Box --- */
.feature-box { text-align: left; padding: 20px 0; border-top: 1px solid transparent; }
.feature-icon { font-size: 40px; color: var(--dark-color); margin-bottom: 20px; position: relative; display: inline-block; }
.feature-icon i { position: relative; z-index: 2; }
.feature-icon::after { content: ''; position: absolute; bottom: 0; right: -10px; width: 25px; height: 25px; background-color: var(--primary-color); border-radius: 50%; z-index: 1; }
.feature-box h4 { font-size: 20px; margin-bottom: 15px; }
.feature-box p { color: var(--text-gray); font-size: 14.5px; }

/* --- Dark Section --- */
.bg-dark-section { background-color: var(--dark-color); color: rgba(255,255,255,0.7); }
.bg-dark-section .sec-title, .bg-dark-section .sub-title { color: var(--light-color); }
.bg-dark-section .top-right p { color: rgba(255,255,255,0.7); }
.bg-dark-section .sub-title { color: var(--primary-color); }

/* --- Top Bar --- */
.top-bar-wrapper { border-bottom: 1px solid #E5E5E5; background: white; width: 100%; position: relative; z-index: 1001; }
.top-bar { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 13px; color: var(--text-gray); }
.top-bar-left { display: flex; gap: 20px; }
.top-bar-left span { display: flex; align-items: center; gap: 8px; }
.top-bar-left i { color: var(--primary-color); }
.top-bar-right .social-links a { width: 28px; height: 28px; font-size: 12px; border-color: #E5E5E5; color: var(--text-gray); border-radius: 4px; }
.top-bar-right .social-links a:hover { color: var(--primary-color); border-color: var(--primary-color); }

/* --- Projects Page --- */
.project-card-outline {
    border: 1px solid #E5E5E5;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: white;
}
.project-card-outline .card-body { padding: 30px; }
.project-card-outline h3 { font-size: 22px; margin-bottom: 15px; }
.project-card-outline p { color: var(--text-gray); font-size: 15px; margin-bottom: 20px; }

.stats-banner-outline {
    border: 1px solid #E5E5E5;
    border-radius: var(--border-radius);
    padding: 50px 30px;
    background: white;
}
.stats-banner-outline .stat-num { font-size: 50px; color: var(--primary-color); font-family: var(--font-heading); font-weight: 600; line-height: 1; margin-bottom: 10px; }
.stats-banner-outline .stat-text { color: var(--text-gray); font-size: 15px; }

.consultation-banner {
    position: relative;
    background: url('assets/hero.png') no-repeat center center/cover;
    padding: 100px 0;
}
.consultation-banner::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(45, 50, 62, 0.85);
}
.consultation-banner .container { position: relative; z-index: 2; }
.consultation-box {
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--border-radius);
    padding: 60px;
    max-width: 600px;
}
.consultation-box h2 { color: white; font-size: 46px; line-height: 1.2; margin-bottom: 20px; }
.consultation-box p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 30px; }

/* --- Contact Page --- */
.contact-card-outline {
    border: 1px solid #E5E5E5;
    border-radius: var(--border-radius);
    padding: 40px;
    background: white;
}
.contact-card-outline .icon {
    font-size: 35px;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.contact-card-outline h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}
.contact-card-outline p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* --- Product Showcase Cards --- */
.product-card-showcase {
    border-radius: var(--border-radius);
    overflow: hidden;
    background: white;
    border: 1px solid #E5E5E5;
    transition: var(--transition);
}
.product-card-showcase:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: translateY(-8px);
}

.product-image-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #f0f0f0;
}
.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    border-radius: 0;
}
.product-card-showcase:hover .product-image-wrap img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(239, 99, 39, 0.85) 0%, rgba(45, 50, 62, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: var(--transition);
    text-align: center;
    padding: 30px;
}
.product-card-showcase:hover .product-overlay {
    opacity: 1;
}

.product-text {
    font-size: 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.product-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.product-info {
    padding: 25px;
}
.product-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-color);
}
.product-info p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ===== Search Modal ===== */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.search-modal.active {
    opacity: 1;
    visibility: visible;
}
.search-modal-content {
    width: 90%;
    max-width: 650px;
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}
.search-modal.active .search-modal-content {
    transform: translateY(0);
}
.search-modal-header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}
.search-modal-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 20px 25px;
    font-size: 17px;
    font-family: var(--font-body);
    color: var(--dark-color);
    background: transparent;
}
.search-modal-input::placeholder {
    color: #aaa;
}
.search-modal-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #888;
    cursor: pointer;
    padding: 20px 25px;
    transition: color 0.2s;
}
.search-modal-close:hover {
    color: var(--primary-color);
}
.search-modal-results {
    max-height: 300px;
    overflow-y: auto;
}
.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    color: var(--dark-color);
    text-decoration: none;
    font-size: 15px;
    transition: background 0.2s;
    border-bottom: 1px solid #f5f5f5;
}
.search-result-item:hover {
    background: #f9f9f9;
    color: var(--primary-color);
}
.search-result-item i {
    color: var(--primary-color);
    font-size: 13px;
}

/* ===== Mobile Navigation Side Menu ===== */
.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--dark-color);
    z-index: 9998;
    padding: 80px 30px 30px;
    transition: right 0.35s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    overflow-y: auto;
}
.mobile-nav-menu.active {
    right: 0;
}
.mobile-nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav-menu ul li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav-menu ul li a {
    display: block;
    padding: 15px 0;
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    font-family: var(--font-body);
    transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-menu ul li a:hover,
.mobile-nav-menu ul li a.active {
    color: var(--primary-color);
    padding-left: 8px;
}

/* ===== Stats Strip (Home Page) ===== */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 50px 0;
}
.stat-strip-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-strip-item:last-child {
    border-right: none;
}
.stat-strip-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}
.stat-strip-text {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}

/* ===== Global Reach Section ===== */
.global-reach-section {
    background: linear-gradient(135deg, #1a1f2e 0%, #0f1320 50%, #1a2535 100%);
}
.export-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.export-country-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.export-country-tag:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}
.export-country-tag i {
    color: var(--primary-color);
    font-size: 12px;
}
.export-country-tag:hover i {
    color: #fff;
}

/* ===== Jeans Variety Tags ===== */
.jeans-variety-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.jeans-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: #f8f8f8;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    font-size: 14px;
    color: var(--dark-color);
    font-weight: 500;
    transition: all 0.3s ease;
}
.jeans-tag:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}
.jeans-tag i {
    color: var(--primary-color);
    font-size: 12px;
}
.jeans-tag:hover i {
    color: #fff;
}

/* ===== Responsive: Stats Strip ===== */
@media (max-width: 768px) {
    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-strip-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .stat-strip-num {
        font-size: 36px;
    }
}

/* ===== Garment Category Cards ===== */
.garment-category-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.garment-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.garment-card-img {
    position: relative;
    overflow: hidden;
    height: 300px;
}
.garment-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
    display: block;
}
.garment-category-card:hover .garment-card-img img {
    transform: scale(1.06);
}
/* Dark gradient overlay always present */
.garment-card-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(10,12,20,0.88) 0%, rgba(10,12,20,0.3) 60%, transparent 100%);
    pointer-events: none;
}
/* Bold category name at bottom of image */
.garment-card-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 18px 22px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.garment-card-badge::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 28px;
    background: var(--primary-color);
    border-radius: 3px;
    flex-shrink: 0;
}
.garment-card-badge {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #ffffff;
    font-family: var(--font-heading);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    text-transform: uppercase;
}
.garment-card-body {
    padding: 25px;
}
.garment-card-body h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}
.garment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.garment-tags span {
    display: inline-block;
    padding: 5px 14px;
    background: #f4f4f4;
    border-radius: 4px;
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
    transition: all 0.2s ease;
}
.garment-tags span:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ===== Product Strip ===== */
.product-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.product-strip-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.product-strip-item:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}
.product-strip-item i {
    color: var(--primary-color);
    font-size: 12px;
}
.product-strip-item:hover i {
    color: #fff;
}

/* ===== Showcase Gallery Section ===== */
.showcase-gallery-section { background: #f8f8f8; }

/* Wide Banner */
.showcase-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    max-height: 340px;
}
.showcase-banner img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.showcase-banner:hover img { transform: scale(1.03); }
.showcase-banner-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
    padding: 28px 32px;
}
.showcase-banner-overlay span {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Grid Gallery */
.showcase-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}
.showcase-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
}
.showcase-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.showcase-item:hover img { transform: scale(1.06); }
.showcase-item-large { grid-row: span 2; }
.showcase-item-large img { height: 100%; min-height: 360px; }
.showcase-item-wide {
    grid-column: span 2;
}
.showcase-item-wide img { height: 260px; }

/* Hover overlay caption */
.showcase-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(227,27,35,0.82) 0%, transparent 100%);
    padding: 20px 18px 16px;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.showcase-item:hover .showcase-overlay { opacity: 1; }
.showcase-overlay p {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr 1fr;
    }
    .showcase-item-large { grid-row: span 1; }
    .showcase-item-large img { min-height: 220px; }
    .showcase-item img { height: 200px; }
    .showcase-item-wide { grid-column: span 2; }
    .showcase-banner img { height: 200px; }
    .showcase-banner { max-height: 200px; }
}
@media (max-width: 480px) {
    .showcase-grid { grid-template-columns: 1fr; }
    .showcase-item-wide { grid-column: span 1; }
}

/* ===== Toast Notifications ===== */
.toast-container {
    position: fixed;
    top: 28px;
    right: 28px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toast {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 320px;
    max-width: 440px;
    padding: 16px 22px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    font-size: 14px;
    font-weight: 500;
    color: #2D323E;
    transform: translateX(120%);
    animation: toast-in 0.4s ease forwards;
    border-left: 5px solid #22c55e;
}
.toast.toast-error { border-left-color: #E31B23; }
.toast .toast-icon {
    font-size: 22px;
    flex-shrink: 0;
}
.toast.toast-success .toast-icon { color: #22c55e; }
.toast.toast-error .toast-icon { color: #E31B23; }
.toast .toast-close {
    margin-left: auto;
    cursor: pointer;
    color: #aaa;
    font-size: 16px;
    padding: 4px;
    transition: color 0.2s;
}
.toast .toast-close:hover { color: #333; }
.toast.toast-out { animation: toast-out 0.35s ease forwards; }

@keyframes toast-in {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes toast-out {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(120%); opacity: 0; }
}

/* ===== Form Loading State ===== */
.btn-loading {
    pointer-events: none;
    opacity: 0.7;
    position: relative;
}
.btn-loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spin 0.6s linear infinite;
    vertical-align: middle;
}
@keyframes btn-spin {
    to { transform: rotate(360deg); }
}
