/*
Theme Name: ATC Astra Child
Theme URI: https://asiantradingcorporation.com
Description: Astra Child Theme for Asian Trading Corporation
Template: astra
Version: 2.0.9
Text Domain: astra-child
*/

:root {
    --atc-ink: #111111;
    --atc-canvas: #ffffff;
    --atc-soft-cloud: #f5f5f5;
    --atc-charcoal: #39393b;
    --atc-mute: #707072;
    --atc-border: #e0e0e0;
    --atc-red: #d30005;
}

body, #page, .site {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* ===== ANNOUNCEMENT BAR / NEWS TICKER ===== */
.atc-announcement-bar {
    background-color: var(--atc-red);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.atc-announcement-contact-bar {
    background-color: #b80004;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.atc-announcement-contact {
    color: #ffffff;
}

.atc-ticker-wrap {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.atc-ticker {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: atc-ticker-scroll 40s linear infinite;
}

.atc-ticker:hover {
    animation-play-state: paused;
}

.atc-ticker-item {
    padding: 0 8px;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
}

.atc-ticker-separator {
    color: rgba(255,255,255,0.5);
    font-size: 8px;
    padding: 0 4px;
}

@keyframes atc-ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== HEADER / NAVIGATION ===== */
.site-header {
    background-color: var(--atc-canvas);
    border-bottom: 1px solid var(--atc-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.atc-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

.site-branding { display: flex; align-items: center; flex-shrink: 0; }
.site-logo .custom-logo { max-height: 50px; width: auto; }
.site-title, .site-description { display: none; }

/* Main Navigation */
.atc-main-nav { display: flex; align-items: center; flex-grow: 1; justify-content: center; }

.atc-nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.atc-nav-menu li { position: relative; }

.atc-nav-menu li a {
    display: block;
    padding: 22px 16px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--atc-charcoal);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s ease;
    white-space: nowrap;
    position: relative;
}

.atc-nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 16px;
    right: 16px;
    height: 0;
    background-color: var(--atc-red);
    transition: height 0.2s ease;
}

.atc-nav-menu li a:hover::after { height: 2px; }
.atc-nav-menu li a:hover { color: var(--atc-ink); }

/* Header Right */
.atc-header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.atc-header-search { position: relative; }

.atc-search-toggle {
    background: none;
    border: 1px solid var(--atc-border);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.atc-search-toggle:hover { border-color: var(--atc-ink); background: var(--atc-soft-cloud); }

.atc-search-dropdown {
    display: none;
    position: absolute;
    top: 46px;
    right: 0;
    background: #ffffff;
    border: 1px solid var(--atc-border);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    width: 360px;
    padding: 12px;
    z-index: 99999;
}

.atc-search-dropdown.active { display: block; }

.atc-search-input-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--atc-border);
    border-radius: 6px;
    padding: 8px 12px;
    transition: border-color 0.2s;
}

.atc-search-input-wrap:focus-within { border-color: var(--atc-ink); }
.atc-search-input-wrap svg { flex-shrink: 0; }

.atc-search-input {
    border: none;
    outline: none;
    font-size: 14px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    width: 100%;
    color: var(--atc-ink);
}

.atc-search-results { max-height: 300px; overflow-y: auto; margin-top: 8px; }

.atc-search-result-item {
    display: block;
    padding: 10px 12px;
    text-decoration: none;
    color: var(--atc-ink);
    border-radius: 6px;
    transition: background 0.15s;
    border-bottom: 1px solid var(--atc-border);
}

.atc-search-result-item:last-child { border-bottom: none; }
.atc-search-result-item:hover { background: var(--atc-soft-cloud); }
.atc-search-result-title { font-size: 14px; font-weight: 600; margin: 0; }
.atc-search-result-excerpt { font-size: 12px; color: var(--atc-mute); margin: 2px 0 0; line-height: 1.4; }
.atc-search-no-results { padding: 16px; text-align: center; color: var(--atc-mute); font-size: 13px; }

/* CTA Button */
.atc-header-cta-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--atc-red);
    color: #ffffff !important;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.atc-header-cta-btn:hover { background-color: #b80004; transform: translateY(-1px); }

/* ===== LAYOUT FIX: force full-width, no sidebar ===== */
#content.site-content,
#primary.content-area {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    box-sizing: border-box;
}

.site-main {
    width: 100% !important;
}

.ast-container {
    max-width: 100% !important;
    padding: 0 !important;
    width: 100% !important;
}

/* ===== HERO ===== */
.atc-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--atc-ink);
    min-height: 45vh;
    padding: 80px 24px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.atc-hero-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 20%, rgba(211,0,5,0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(211,0,5,0.12) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 70%);
    pointer-events: none;
    animation: atc-hero-gradient 12s ease-in-out infinite alternate;
}

@keyframes atc-hero-gradient {
    0% {
        transform: translate(0%, 0%) rotate(0deg);
    }
    33% {
        transform: translate(5%, -3%) rotate(1deg);
    }
    66% {
        transform: translate(-3%, 5%) rotate(-1deg);
    }
    100% {
        transform: translate(2%, 2%) rotate(0.5deg);
    }
}

.atc-hero-inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.atc-hero .atc-display-headline {
    color: #ffffff;
    margin-bottom: 24px;
}

.atc-hero-tagline {
    font-size: 20px;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.atc-hero .atc-button-primary {
    background-color: #ffffff;
    color: var(--atc-ink);
}

.atc-hero .atc-button-primary:hover {
    background-color: var(--atc-soft-cloud);
}

.atc-hero .atc-button-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.atc-hero .atc-button-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Trust Badges */
.atc-hero-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.atc-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.atc-badge-icon {
    color: var(--atc-red);
    font-size: 14px;
}

.atc-badge-text {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Scroll Indicator */
.atc-hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
    animation: atc-scroll-bounce 2s ease-in-out infinite;
}

.atc-scroll-text {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.atc-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: atc-scroll-line 2s ease-in-out infinite;
}

@keyframes atc-scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes atc-scroll-line {
    0% { opacity: 0; height: 20px; }
    50% { opacity: 1; height: 40px; }
    100% { opacity: 0; height: 20px; }
}

/* ===== TYPOGRAPHY ===== */
.atc-display-headline {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--atc-ink);
    margin: 0 0 16px 0;
}

.atc-heading-xl {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--atc-ink);
    margin: 0 0 8px 0;
}

.atc-heading-lg {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--atc-ink);
    margin: 0 0 16px 0;
}

.atc-subheading {
    font-size: 16px;
    color: var(--atc-mute);
    margin: 0;
    line-height: 1.6;
}

/* ===== SECTIONS ===== */
.atc-section {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 80px 24px;
}

.atc-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.atc-section--chemicals { background-color: var(--atc-canvas); }
.atc-section--textile { background-color: var(--atc-soft-cloud); }
.atc-section--customers { background-color: var(--atc-canvas); }
.atc-section--stats { background-color: var(--atc-soft-cloud); }
.atc-section--about { background-color: var(--atc-canvas); }
.atc-section--contact { background-color: var(--atc-canvas); }
.atc-section--newsletter { background-color: var(--atc-soft-cloud); }

.atc-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.atc-center-btn {
    text-align: center;
    margin-top: 40px;
}

/* ===== BUTTONS ===== */
.atc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    border-radius: 30px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
}

.atc-button-primary {
    background-color: var(--atc-ink);
    color: #ffffff;
}

.atc-button-primary:hover {
    opacity: 0.9;
}

.atc-button-secondary {
    background-color: var(--atc-soft-cloud);
    color: var(--atc-ink);
}

.atc-button-secondary:hover {
    background-color: #e5e5e5;
}

.atc-button-outline {
    background-color: transparent;
    color: var(--atc-ink);
    border-color: var(--atc-ink);
}

.atc-button-outline:hover {
    background-color: var(--atc-ink);
    color: #ffffff;
}

/* ===== PRODUCT GRID ===== */
.atc-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.atc-product-card {
    background-color: var(--atc-canvas);
    border: 1px solid var(--atc-border);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.atc-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.atc-product-image {
    background-color: var(--atc-soft-cloud);
    padding: 56px 24px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--atc-mute);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid var(--atc-border);
}

.atc-product-info {
    padding: 24px;
}

.atc-product-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--atc-ink);
    margin: 0 0 6px 0;
}

.atc-product-desc {
    font-size: 14px;
    color: var(--atc-mute);
    margin: 0;
    line-height: 1.5;
}

/* ===== TEXTILE FEATURES ===== */
.atc-textile-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.atc-feature-card {
    background-color: var(--atc-canvas);
    padding: 40px 28px;
    text-align: center;
    border: 1px solid var(--atc-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.atc-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.atc-feature-icon {
    margin-bottom: 20px;
    color: var(--atc-ink);
    display: flex;
    justify-content: center;
}

.atc-feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--atc-ink);
    margin: 0 0 10px 0;
}

.atc-feature-card p {
    font-size: 14px;
    color: var(--atc-mute);
    margin: 0;
    line-height: 1.6;
}

/* ===== STATS ===== */
.atc-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.atc-stat-item {
    text-align: center;
    padding: 48px 24px;
    background-color: var(--atc-canvas);
    border: 1px solid var(--atc-border);
}

.atc-stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--atc-ink);
    line-height: 1;
    margin-bottom: 12px;
}

.atc-stat-label {
    font-size: 13px;
    color: var(--atc-mute);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ===== CUSTOMER LOGOS ===== */
.atc-customer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 24px 0;
}

.atc-logo-item img {
    max-height: 140px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.atc-logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== ABOUT ===== */
.atc-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.atc-about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--atc-charcoal);
    margin: 0 0 20px 0;
}

.atc-about-image {
    text-align: center;
}

/* ===== CONTACT ===== */
.atc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.atc-contact-card {
    background-color: var(--atc-soft-cloud);
    padding: 40px;
    border: 1px solid var(--atc-border);
}

.atc-contact-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--atc-ink);
    margin: 0 0 20px 0;
}

.atc-contact-card p {
    font-size: 15px;
    color: var(--atc-charcoal);
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.atc-contact-form-card {
    background-color: var(--atc-canvas);
    padding: 40px;
    border: 1px solid var(--atc-border);
}

.atc-contact-form-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--atc-ink);
    margin: 0 0 20px 0;
}

.atc-contact-form input,
.atc-contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--atc-border);
    border-radius: 2px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    margin-bottom: 16px;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.atc-contact-form input:focus,
.atc-contact-form textarea:focus {
    border-color: var(--atc-ink);
    outline: none;
}

.atc-contact-form button {
    width: 100%;
    margin-top: 8px;
    padding: 16px;
}

/* ===== EXPORT STRIP BELOW HERO ===== */
.atc-export-strip {
    background: var(--atc-charcoal);
    padding: 14px 24px;
    overflow: hidden;
    margin-top: 8px;
}

.atc-export-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.atc-export-strip-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--atc-red);
    white-space: nowrap;
}

.atc-export-strip-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

.atc-export-strip-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    white-space: nowrap;
}

.atc-export-strip-flag {
    font-size: 16px;
}

/* Fade-in animation */
.atc-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.atc-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PAGE HERO (inner pages) ===== */
.atc-page-hero {
    background-color: var(--atc-ink);
    padding: 80px 24px;
    text-align: center;
}

.atc-page-hero .atc-display-headline {
    color: #ffffff;
    margin-bottom: 16px;
}

.atc-page-hero .atc-hero-tagline {
    color: #b0b0b0;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== REVIEWS GRID ===== */
.atc-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.atc-review-card {
    background: var(--atc-canvas);
    border: 1px solid var(--atc-border);
    padding: 32px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.atc-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.atc-review-stars {
    color: #f5a623;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.atc-review-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--atc-charcoal);
    margin: 0 0 20px 0;
    font-style: italic;
}

.atc-review-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.atc-review-author strong {
    font-size: 14px;
    color: var(--atc-ink);
}

.atc-review-author span {
    font-size: 13px;
    color: var(--atc-mute);
}

/* ===== NEWSLETTER ===== */
.atc-newsletter {
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
}

.atc-newsletter h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--atc-ink);
    margin: 0 0 10px 0;
}

.atc-newsletter p {
    font-size: 15px;
    color: var(--atc-mute);
    margin: 0 0 28px 0;
}

.atc-newsletter-form {
    display: flex;
    gap: 12px;
}

.atc-newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--atc-border);
    border-radius: 30px;
    font-size: 15px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.atc-newsletter-form input:focus {
    border-color: var(--atc-ink);
    outline: none;
}

/* ===== CATEGORY GRID ===== */
.atc-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.atc-category-card {
    background-color: var(--atc-canvas);
    padding: 28px;
    border: 1px solid var(--atc-border);
}

.atc-category-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--atc-ink);
    margin: 0 0 14px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--atc-border);
}

.atc-category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.atc-category-card li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--atc-charcoal);
    line-height: 1.5;
}

/* ===== RANGE TAGS ===== */
.atc-product-range-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.atc-range-tag {
    padding: 10px 28px;
    background-color: var(--atc-canvas);
    border: 1px solid var(--atc-ink);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--atc-ink);
    transition: all 0.2s ease;
}

.atc-range-tag:hover {
    background-color: var(--atc-ink);
    color: #ffffff;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Laptop */
@media (max-width: 1199px) {
    .atc-display-headline { font-size: 56px; }
    .atc-heading-xl { font-size: 30px; }
    .atc-section { padding: 64px 20px; }
    .atc-category-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet */
@media (max-width: 991px) {
    .atc-display-headline { font-size: 48px; }
    .atc-heading-xl { font-size: 28px; }
    .atc-products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .atc-textile-features { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .atc-reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .atc-export-inner { flex-direction: column; gap: 20px; }
    .atc-export-right { align-items: center; }
    .atc-export-left { align-items: center; }
    .atc-about-content { gap: 40px; }
    .atc-announcement-inner { justify-content: center; text-align: center; }
    .atc-announcement-contact { display: none; }
    .atc-announcement-contact-bar { padding: 6px 14px; font-size: 11px; }
    .atc-hero { min-height: 40vh; padding: 60px 24px 36px; }
    .atc-hero-badges { gap: 20px; }
}

/* ===== HAMBURGER (mobile only) ===== */
.atc-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}
.atc-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--atc-ink);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.atc-hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.atc-hamburger.active span:nth-child(2) { opacity: 0; }
.atc-hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ===== MOBILE SLIDE-IN PANEL ===== */
.atc-mobile-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 998;
}
.atc-mobile-overlay.active { display: block; }

.atc-mobile-panel {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 999;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.atc-mobile-panel.active { right: 0; }

.atc-mobile-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--atc-border);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--atc-ink);
}
.atc-mobile-panel-close {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--atc-ink);
    line-height: 1;
    padding: 0;
}

.atc-mobile-panel-links {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}
.atc-mobile-panel-links li a {
    display: block;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--atc-charcoal);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: background 0.15s;
}
.atc-mobile-panel-links li a:hover {
    background: var(--atc-soft-cloud);
    color: var(--atc-red);
}

/* ===== RESPONSIVE ===== */

/* Mobile */
@media (max-width: 767px) {
    .atc-hamburger { display: flex; }
    #desktop-navigation { display: none !important; }
    .atc-header-cta-btn { display: none; }

    .atc-display-headline { font-size: 38px; }
    .atc-heading-xl { font-size: 24px; }
    .atc-heading-lg { font-size: 22px; }
    .atc-section { padding: 48px 16px; }
    .atc-hero { min-height: 35vh; padding: 50px 16px 32px; box-sizing: border-box; width: 100%; }
    .atc-hero-tagline { font-size: 15px; }
    .atc-hero-scroll { bottom: 20px; }
    .atc-products-grid,
    .atc-textile-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .atc-category-grid,
    .atc-reviews-grid { grid-template-columns: 1fr; }
    .atc-product-image {
        padding: 24px 8px;
        font-size: 11px;
        letter-spacing: 1px;
    }
    .atc-product-info {
        padding: 14px;
    }
    .atc-product-name {
        font-size: 13px;
    }
    .atc-product-desc {
        font-size: 11px;
    }
    .atc-feature-card {
        padding: 20px 12px;
    }
    .atc-feature-card h3 {
        font-size: 14px;
    }
    .atc-feature-card p {
        font-size: 11px;
    }
    .atc-stats-grid { grid-template-columns: 1fr; }
    .atc-about-content,
    .atc-row { grid-template-columns: 1fr; gap: 32px; }
    .atc-customer-logos { gap: 24px; }
    .atc-newsletter-form { flex-direction: column; }
    .atc-contact-card,
    .atc-contact-form-card { padding: 28px; }
    .atc-stat-number { font-size: 44px; }
    .atc-header-inner { padding: 0 20px; }
    .site-logo .custom-logo { max-height: 36px; }
    .atc-nav-menu li a { padding: 14px 10px; font-size: 11px; letter-spacing: 0.5px; }
    .atc-header-cta-btn { padding: 8px 16px; font-size: 11px; }

    /* Badges: horizontal scrollable strip */
    .atc-hero-badges {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 12px 0 4px;
        justify-content: flex-start;
        border-top: none;
    }
    .atc-badge {
        flex-shrink: 0;
        padding: 6px 14px;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 20px;
    }
    .atc-badge-text { font-size: 11px; letter-spacing: 0.3px; }

    /* About section mobile */
    .atc-about-content { gap: 24px; text-align: center; }
    .atc-about-text p { font-size: 14px; }
    .atc-about-image { order: -1; }
    .atc-about-image img { max-height: 80px; }

    /* Footer: single column stack on mobile */
    .atc-footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px 16px 24px;
    }
    .atc-footer-about { grid-column: auto; }
    .atc-footer-about p { font-size: 13px; margin-bottom: 16px; }
    .atc-footer-col h4 { font-size: 13px; margin-bottom: 12px; }
    .atc-footer-col ul li { margin-bottom: 8px; }
    .atc-footer-col ul li a { font-size: 13px; }
    .atc-footer-contact li { font-size: 13px; }
    .atc-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        font-size: 12px;
        padding: 16px;
    }
}

/* ===== WHATSAPP BUTTON & MODAL ===== */
.atc-whatsapp-float-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}

.atc-whatsapp-float-btn:hover {
    background-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

.atc-whatsapp-float-btn svg {
    flex-shrink: 0;
}

/* Modal */
.atc-whatsapp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.atc-whatsapp-modal.active {
    display: flex;
}

.atc-whatsapp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}

.atc-whatsapp-form-wrap {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: atc-modal-slide-up 0.3s ease;
}

@keyframes atc-modal-slide-up {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.atc-whatsapp-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    z-index: 1;
    line-height: 1;
    transition: color 0.2s;
}

.atc-whatsapp-close:hover {
    color: #333;
}

.atc-whatsapp-header {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #075e54;
    padding: 20px 24px;
    border-radius: 16px 16px 0 0;
    color: #ffffff;
}

.atc-whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    flex-shrink: 0;
}

.atc-whatsapp-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.atc-whatsapp-header p {
    margin: 2px 0 0;
    font-size: 13px;
    opacity: 0.85;
}

.atc-whatsapp-body {
    padding: 24px;
}

.atc-wa-field {
    margin-bottom: 16px;
}

.atc-wa-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.atc-wa-field input,
.atc-wa-field select,
.atc-wa-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    box-sizing: border-box;
    transition: border-color 0.2s;
    background: #fafafa;
}

.atc-wa-field input:focus,
.atc-wa-field select:focus,
.atc-wa-field textarea:focus {
    border-color: #25D366;
    outline: none;
    background: #ffffff;
}

.atc-wa-field textarea {
    resize: vertical;
    min-height: 70px;
}

.atc-wa-send-btn {
    width: 100%;
    padding: 14px;
    background: #25D366;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.atc-wa-send-btn:hover {
    background: #1da851;
}

.atc-wa-send-btn::before {
    content: "\27A4";
    font-size: 16px;
}

/* Responsive */
@media (max-width: 480px) {
    .atc-whatsapp-form-wrap {
        margin: 16px;
        max-height: 85vh;
    }
    .atc-whatsapp-float-btn span { display: inline; }
    .atc-whatsapp-float-btn { padding: 10px 18px; }
}

@media (max-width: 480px) {
    .atc-display-headline { font-size: 30px; }
    .atc-button { padding: 12px 24px; font-size: 14px; }
    .atc-stat-number { font-size: 36px; }
}

/* ===== FOOTER ===== */
.atc-footer {
    background: var(--atc-ink);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.atc-footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.atc-footer-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.atc-footer-about p {
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 13px;
}

.atc-footer-social {
    display: flex;
    gap: 12px;
}

.atc-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    transition: background 0.2s, color 0.2s;
}

.atc-footer-social a:hover {
    background: var(--atc-red);
    color: #fff;
}

.atc-footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 18px;
}

.atc-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.atc-footer-col ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.atc-footer-col ul li a:hover {
    color: var(--atc-red);
}

.atc-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.atc-footer-contact li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--atc-red);
}

.atc-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.atc-footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

/* Footer responsive */
@media (max-width: 991px) {
    .atc-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* Footer mobile - handled in 767px block above */

/* Hide Astra default footer */
.ast-footer-overlay,
.astra-footer-nav-overlay,
.site-footer {
    display: none !important;
}