@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ==========================================
   GLOBAL VARIABLES & RESET
   ========================================== */
:root {
    --orange: #ef5b00;
    --dark: #111111;
    --gray: #666666;
    --light-gray: #f9f9f9;
    --border: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #333;
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
    background-color: var(--orange);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 5%;
    font-size: 13px;
}

.top-bar-left, 
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar i {
    margin-right: 5px;
}

.social-icons i {
    margin: 0 8px;
    font-size: 14px;
    cursor: pointer;
}

/* ==========================================
   NAVBAR & MOBILE NAVIGATION
   ========================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    margin: 15px auto;
    max-width: 95%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 15px;
    z-index: 1000;
}

/* Clickable Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

.logo img {
    height: 40px;
}

.logo-text {
    line-height: 1.1;
}

.logo-text h1 {
    font-size: 20px;
    color: var(--orange);
    font-weight: 700;
}

.logo-text span {
    font-size: 9px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Desktop Nav Links */
.nav-links {
    display: flex;
    gap: 18px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.nav-links a {
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a.active, 
.nav-links a:hover {
    color: var(--orange);
}

.nav-links a.active {
    border-bottom: 2px solid var(--orange);
    padding-bottom: 2px;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown > a .fa-chevron-down {
    font-size: 10px;
    transition: transform 0.3s;
}

.nav-dropdown:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-radius: 0 0 8px 8px;
    border-top: 3px solid var(--orange);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 2000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: #333 !important;
    border-bottom: none !important;
    text-align: left;
    transition: all 0.2s;
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--orange) !important;
    padding-left: 25px;
}

.dropdown-menu a i {
    margin-right: 8px;
    color: var(--orange);
    width: 16px;
    text-align: center;
}

/* Hamburger Icon (Strictly Hidden on Desktop) */
.mobile-menu-btn {
    display: none !important;
    font-size: 24px;
    color: var(--orange);
    cursor: pointer;
}

.desktop-btn {
    display: inline-block;
    background: var(--dark);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}
.desktop-btn:hover {
    background: var(--orange);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 91, 0, 0.3);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    background-color: var(--orange);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #d15102;
}

.btn-large {
    padding: 14px 28px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    padding: 8px 15px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-outline:hover {
    background: var(--orange);
    color: white;
}

/* ==========================================
   PAGE BANNER (FOR SUBPAGES)
   ========================================== */
.page-banner {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #222222 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.page-banner.has-bg-image {
    padding: 100px 20px;
}
.page-banner.has-bg-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
.page-banner.has-bg-image h1,
.page-banner.has-bg-image p {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.page-banner p {
    font-size: 15px;
    color: #ccc;
}

/* ==========================================
   HERO SECTION (HOME)
   ========================================== */
.hero {
    position: relative;
    background: #111;
    color: white;
    padding: 100px 5%;
    display: flex;
    align-items: center;
    min-height: 70vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: transparent;
    z-index: 1;
}

.hero::after {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
}

.hero h2 {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h2 span {
    color: var(--orange);
}

.hero p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #ddd;
    line-height: 1.6;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
    font-size: 14px;
    font-weight: 500;
}

.hero-features div i {
    color: var(--orange);
    margin-right: 8px;
    font-size: 18px;
    vertical-align: middle;
}

/* Hero CTA Bar */
.hero-cta-bar {
    background: #111;
    padding: 25px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-cta-bar .btn-outline-white {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.hero-cta-bar .btn-outline-white:hover {
    background: #fff;
    color: #111;
}

/* ==========================================
   FEATURE STRIP
   ========================================== */
.feature-strip {
    display: flex;
    justify-content: space-between;
    padding: 25px 5%;
    background: white;
    border-bottom: 1px solid var(--border);
    text-align: center;
    font-size: 12px;
    font-weight: 600;
}

.strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.strip-item i {
    font-size: 24px;
    color: var(--orange);
}

/* ==========================================
   PRODUCTS SECTION
   ========================================== */
.products {
    padding: 60px 5%;
    background-color: var(--light-gray);
    text-align: center;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.section-title span, 
.divider {
    display: block;
    width: 50px;
    height: 3px;
    background: var(--orange);
    margin: 10px auto 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    text-align: center;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.product-card .card-image-wrap {
    position: relative;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(239, 91, 0, 0.9));
    padding: 40px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.product-card:hover .card-overlay {
    transform: translateY(0);
}

.product-card .card-overlay span {
    color: white;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card .card-overlay span i {
    margin-left: 6px;
}

.product-card .card-content {
    padding: 10px 15px 12px;
}

.product-icon {
    width: 30px;
    height: 30px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -15px auto 8px;
    position: relative;
    border: 3px solid white;
    z-index: 2;
    transition: transform 0.3s;
    font-size: 12px;
}

.product-card:hover .product-icon {
    transform: scale(1.15);
}

.product-card h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
    padding: 0 10px;
}

.product-card p {
    font-size: 11px;
    color: var(--gray);
    padding: 0 15px;
    line-height: 1.4;
}

/* ==========================================
   INFO GRID (4 CARDS)
   ========================================== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: white;
    padding: 40px 5%;
    gap: 20px;
}

.info-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.info-card p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 20px;
}

.info-card img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */
.about-section {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 80px 5%;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-content h2 span {
    color: var(--orange);
}

.about-content p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.about-features li {
    list-style: none;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features li i {
    color: var(--orange);
    font-size: 18px;
}

.why-choose-us {
    background-color: var(--light-gray);
    padding: 80px 5%;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-choose-us .divider {
    margin: 0 auto 50px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.grid-item {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.grid-item:hover {
    transform: translateY(-5px);
}

.grid-item i {
    font-size: 40px;
    color: var(--orange);
    margin-bottom: 20px;
}

.grid-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.grid-item p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    padding: 80px 5%;
    background-color: var(--light-gray);
}

.contact-info {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--orange);
    height: fit-content;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--dark);
}

.info-block {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-block i {
    font-size: 24px;
    color: var(--orange);
    margin-top: 5px;
}

.info-block h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark);
}

.info-block p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form-wrapper h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--dark);
}

.contact-form-wrapper p.subtitle {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 14px;
    background-color: #fafafa;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background-color: white;
    box-shadow: 0 0 0 2px rgba(239, 91, 0, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
}

.checkbox-item input[type="checkbox"] {
    accent-color: var(--orange);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.btn-submit {
    background-color: var(--orange);
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
    width: 100%;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #d15102;
}

/* ==========================================
   FOOTER BANNER & STATS
   ========================================== */
.footer-banner {
    background: var(--orange);
    color: white;
    display: flex;
    padding: 40px 5%;
    align-items: center;
}

.footer-stats {
    display: flex;
    flex: 2;
    justify-content: space-around;
    border-right: 1px solid rgba(255,255,255,0.3);
    padding-right: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 36px;
    opacity: 0.9;
}

.stat-text h3 {
    font-size: 24px;
    font-weight: 700;
}

.stat-text p {
    font-size: 12px;
    opacity: 0.9;
}

.footer-cta {
    flex: 1;
    padding-left: 40px;
}

.footer-cta h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-cta p {
    font-size: 13px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-cta .btn {
    background: white;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.address-box {
    font-size: 13px;
    margin-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 10px;
}

/* ==========================================
   PRODUCTS SHOWCASE PAGE
   ========================================== */
.products-showcase {
    padding: 60px 5%;
    background-color: white;
}

.products-showcase:nth-child(even) {
    background-color: var(--light-gray);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.showcase-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
}

.showcase-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.showcase-item img {
    width: 100%;
    height: auto;
    display: block;
}

.showcase-item h4 {
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
}

/* ==========================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================== */

/* Tablets & Laptops Below 1100px */
@media (max-width: 1100px) {
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile & Tablet Toggle Breakpoint (1100px) */
@media (max-width: 1100px) {
    /* Navbar adapts on mobile */
    .navbar {
        border-radius: 0;
        margin: 0;
        top: 0;
        width: 100%;
        max-width: 100%;
        padding: 12px 5%;
    }

    /* Navbar Toggles */
    .mobile-menu-btn {
        display: block !important;
    }

    .desktop-btn {
        display: none !important;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px 5%;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        border-top: 1px solid var(--border);
        gap: 15px;
        z-index: 2000;
    }

    .nav-links.show-menu {
        display: flex !important;
    }

    /* Mobile Dropdown */
    .nav-dropdown {
        position: static;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        border-radius: 0;
        border-left: 3px solid var(--orange);
        margin-left: 10px;
        padding: 5px 0;
        display: none;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 10px 15px;
        font-size: 14px; /* Increased */
    }

    /* Hero mobile */
    .hero {
        min-height: 80vh;
        padding: 80px 5%;
    }
    
    .page-banner {
        padding: 60px 20px;
    }

    .page-banner.has-bg-image {
        padding: 80px 20px;
    }

    /* Layout Adjustments */
    .about-section {
        flex-direction: column;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-stats {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.3);
        padding: 0 0 30px 0;
        width: 100%;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-cta {
        padding-left: 0;
    }
}

/* Phones (768px and Below) */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-bar-right {
        display: none;
    }

    .hero {
        min-height: 50vh;
        padding: 60px 5%;
    }

    .hero-video {
        object-position: center center;
    }

    .hero::before {
        background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .feature-strip {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-card img {
        height: 180px;
    }
}

/* ==========================================
   ACCESSIBILITY & PERFORMANCE
   ========================================== */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .hero-video {
        display: none;
    }
}

*:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

/* ==========================================
   ADDITIONAL MOBILE FIXES
   ========================================== */
@media (max-width: 480px) {
    .hero {
        min-height: 40vh;
        padding: 40px 5%;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 13px;
    }

    .section-title {
        font-size: 20px;
    }

    .page-banner {
        padding: 50px 20px;
    }

    .page-banner h1 {
        font-size: 28px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card img {
        height: 200px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
    }

    .footer-stats {
        justify-content: center;
    }

    .btn-large {
        padding: 12px 20px;
        font-size: 13px;
    }
}
/* =========================================
   EXPERIENCE THE DETAILS (DEEP ZOOM)
   ========================================= */
.fabric-magnifier-section {
    padding: 100px 20px;
    background-color: #050505;
    color: #fff;
    text-align: center;
}
.section-header {
    max-width: 800px;
    margin: 0 auto 50px;
}
.section-header h2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}
.section-header h2 span {
    color: var(--orange);
}
.section-header p {
    color: #999;
    font-size: 1.15rem;
    font-weight: 300;
}

.deep-zoom-container {
    position: relative;
    max-width: 90%;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: 0 25px 60px rgba(0,0,0,0.8);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.deep-zoom-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.9);
}
.deep-zoom-container img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}
.deep-zoom-container:hover img {
    transform: scale(1.02);
}
.deep-zoom-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.deep-zoom-container:hover .deep-zoom-overlay {
    opacity: 1;
}
.deep-zoom-hint {
    background: rgba(10,10,10,0.85);
    padding: 15px 35px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}
.deep-zoom-container:hover .deep-zoom-hint {
    transform: translateY(0);
}
.deep-zoom-hint i {
    color: var(--orange);
}

/* Fullscreen Modal */
.deep-zoom-modal {
    position: fixed;
    inset: 0;
    background: #050505;
    z-index: 99999;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.deep-zoom-modal.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
}
.deep-zoom-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    z-index: 10;
    pointer-events: none;
}
.dz-label {
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 3px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.dz-actions {
    display: flex;
    gap: 15px;
    pointer-events: auto;
}
.dz-actions button {
    background: rgba(20,20,20,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}
.dz-actions button:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.1);
}
.deep-zoom-viewport {
    flex: 1;
    overflow: hidden;
    position: relative;
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
}
.deep-zoom-viewport:active {
    cursor: grabbing;
}
.deep-zoom-viewport img {
    max-width: none;
    transition: transform 0.1s ease-out;
    transform-origin: 0 0;
    will-change: transform;
}


/* =========================================
   PREMIUM UX OVERRIDES (GLOBAL REFINEMENTS)
   ========================================= */

/* Typography */
h1, h2, h3, h4 { letter-spacing: -0.5px; }

/* Buttons */
.btn-large, .btn-submit {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.btn-large:hover, .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(239, 91, 0, 0.25);
}

/* Info Card Polish */
.info-grid {
    gap: 30px;
    margin: 40px auto;
}
.info-card {
    padding: 40px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

/* Footer CTA Polish */
.footer-banner {
    padding: 60px 5%;
}

/* Mobile Enhancements */
@media (max-width: 768px) {
    .footer-banner { padding: 40px 5%; }
    .info-card { padding: 30px 20px; }
    .fabric-magnifier-section { padding: 60px 15px; }
    .section-header h2 { font-size: 1.8rem; }
}

/* Very Small Phones */
@media (max-width: 360px) {
    .logo img { height: 35px; }
    .logo-text h1 { font-size: 18px; }
    .footer-content { grid-template-columns: 1fr; }
}

/* Magnifier Glass */
.img-magnifier-container { position: relative; max-width: 900px; margin: 0 auto; border: 1px solid #333; border-radius: 15px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.6); }
.img-magnifier-container img { width: 100%; height: auto; display: block; }
.img-magnifier-glass { position: absolute; border: 3px solid var(--orange); border-radius: 50%; cursor: crosshair; width: 200px; height: 200px; display: none; box-shadow: 0 10px 25px rgba(0,0,0,0.5), inset 0 0 20px rgba(0,0,0,0.3); z-index: 10; pointer-events: none; }

/* Clickable showcase items */
a.showcase-item { text-decoration: none; color: inherit; display: block; transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; }
a.showcase-item:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
a.showcase-item:hover h4 { color: var(--orange); }

/* ==========================================
   MAIN FOOTER
   ========================================== */
.main-footer {
    background: #111;
    color: #ccc;
    padding: 60px 5% 20px;
    font-size: 14px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col p {
    line-height: 1.6;
}
.footer-links, .footer-contact {
    list-style: none;
}
.footer-links li, .footer-contact li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--orange);
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-contact i {
    color: var(--orange);
    margin-top: 4px;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
}
