/* ==========================================================================
   Smartshadz - Modern E-Commerce Header & Hero Design System
   ========================================================================== */

/* 1. RESET & VARIABLES */
:root {
    --primary-orange: #EF5D22;
    --primary-orange-hover: #D84E17;
    --primary-orange-light: rgba(239, 93, 34, 0.1);
    --dark-topbar: #0B0D0E;
    --text-dark: #121417;
    --text-muted: #5E6573;
    --text-light: #F4F6F8;
    --bg-light: #F7F8FA;
    --border-color: #E2E6EA;
    --white: #FFFFFF;
    
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --container-max-width: 1280px;
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   0. AWNING REVEAL INTRO ANIMATION
   ========================================================================== */
.awning-intro-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0B0D0E;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: fadeOutOverlay 0.6s cubic-bezier(0.4, 0, 0.2, 1) 2.0s forwards;
    pointer-events: none;
}

.awning-fabric-valance {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 52%;
    display: flex;
    z-index: 1;
    animation: unrollAwning 1.1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.awning-stripe {
    flex: 1;
    height: 100%;
    background: linear-gradient(180deg, #181B1F 0%, #111316 85%, #EF5D22 100%);
    box-shadow: inset 0 -4px 12px rgba(0,0,0,0.6);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.awning-stripe:nth-child(even) {
    background: linear-gradient(180deg, #22262C 0%, #1A1D22 85%, #D84E17 100%);
}

.intro-logo-box {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.82);
    animation: logoPopSharp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s forwards;
}

.intro-logo {
    height: 68px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(239, 93, 34, 0.35));
}

.intro-orange-line {
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, #EF5D22, #FFA07A);
    border-radius: 99px;
    margin-top: 14px;
    animation: drawOrangeLine 0.6s ease-out 1.1s forwards;
    box-shadow: 0 0 12px rgba(239, 93, 34, 0.8);
}

@keyframes unrollAwning {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes logoPopSharp {
    0% {
        opacity: 0;
        transform: scale(0.82);
    }
    100% {
        opacity: 1;
        transform: scale(1.04);
    }
}

@keyframes drawOrangeLine {
    to {
        width: 160px;
    }
}

@keyframes fadeOutOverlay {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* LAYOUT CONTAINER */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   2. TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
    background-color: var(--dark-topbar);
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact-info {
    display: flex;
    align-items: center;
    gap: 32px;
}

.top-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D1D5DB;
    transition: var(--transition-fast);
}

.top-item i {
    color: var(--primary-orange);
    font-size: 14px;
}

a.top-item:hover {
    color: var(--white);
}

.top-delivery {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #E5E7EB;
    font-weight: 600;
}

.top-delivery i {
    color: var(--primary-orange);
}

/* ==========================================================================
   3. MAIN HEADER & SEARCH
   ========================================================================== */
.main-header {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Logo */
.logo-wrapper {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

.logo-wrapper:hover .brand-logo {
    transform: scale(1.02);
}

/* Search Bar */
.search-box {
    flex: 1;
    max-width: 600px;
}

.search-form {
    display: flex;
    align-items: center;
    background-color: #F1F3F5;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    transition: var(--transition-fast);
}

.search-form:focus-within {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(239, 93, 34, 0.15);
    background-color: var(--white);
}

.search-input {
    width: 100%;
    padding: 12px 20px;
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--text-dark);
    font-family: inherit;
    outline: none;
}

.search-input::placeholder {
    color: #9CA3AF;
}

.search-btn {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 0 24px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-fast);
}

.search-btn:hover {
    background-color: var(--primary-orange-hover);
}

/* Header Action Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-shrink: 0;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.action-btn .icon-wrap {
    position: relative;
    font-size: 22px;
    color: #2D3748;
    transition: var(--transition-fast);
}

.action-btn:hover {
    color: var(--primary-orange);
}

.action-btn:hover .icon-wrap {
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.action-btn .badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background-color: var(--primary-orange);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    height: 18px;
    min-width: 18px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid var(--white);
}

/* ==========================================================================
   4. NAVIGATION BAR & MEGA MENU
   ========================================================================== */
.nav-bar {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 100;
}

.nav-bar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Category Button Wrapper */
.category-wrapper {
    position: relative;
}

.category-btn {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    transition: var(--transition-fast);
    min-width: 250px;
}

.category-btn:hover {
    background-color: var(--primary-orange-hover);
}

.cat-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cat-left i {
    font-size: 16px;
}

.category-btn .chevron {
    transition: transform var(--transition-fast);
}

.category-wrapper.active .chevron {
    transform: rotate(180deg);
}

/* Category Mega Dropdown */
.category-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
}

.category-wrapper.active .category-dropdown,
.category-wrapper:hover .category-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-list {
    padding: 8px 0;
}

.dropdown-item {
    position: relative;
}

.dropdown-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.dropdown-item > a i:first-child {
    width: 24px;
    color: var(--primary-orange);
}

.dropdown-item > a span {
    flex: 1;
    margin-left: 8px;
}

.arrow-right {
    font-size: 12px;
    color: #9CA3AF;
    transition: transform var(--transition-fast);
}

.dropdown-item:hover > a {
    background-color: var(--bg-light);
    color: var(--primary-orange);
}

.dropdown-item:hover .arrow-right {
    transform: translateX(4px);
    color: var(--primary-orange);
}

/* Submenu Popup */
.sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 260px;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    border-radius: 0 8px 8px 8px;
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 12px;
}

.dropdown-item:hover .sub-menu {
    display: flex;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(5px); }
    to { opacity: 1; transform: translateX(0); }
}

.sub-menu h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-orange);
    margin-bottom: 4px;
}

.sub-menu a {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.sub-menu a:hover {
    color: var(--primary-orange);
    padding-left: 4px;
}

/* Main Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 0.4px;
    padding: 20px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-orange);
    transition: width var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--text-dark);
    padding: 10px;
}

/* ==========================================================================
   5. HERO BANNER SECTION (CINEMATIC ZOOM & STAGGERED ENTRANCE)
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    background-color: #0C0D0E;
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08) translateX(0);
    animation: kenBurnsCinematic 16s ease-out 1.8s infinite alternate;
    will-change: transform;
}

@keyframes kenBurnsCinematic {
    0% {
        transform: scale(1.08) translateX(0);
    }
    100% {
        transform: scale(1.00) translateX(18px);
    }
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg, 
        rgba(12, 13, 14, 0.90) 0%, 
        rgba(12, 13, 14, 0.68) 48%, 
        rgba(12, 13, 14, 0.20) 100%
    );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 64px;
    padding-bottom: 64px;
}

.hero-content {
    max-width: 640px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: #F3F4F6;
    letter-spacing: 0.3px;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(22px);
    animation: fadeInUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 2.1s forwards;
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.8px;
    color: var(--white);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(24px);
}

.title-line-1 {
    animation: fadeInUp 0.65s cubic-bezier(0.165, 0.84, 0.44, 1) 2.3s forwards;
}

.title-line-2 {
    animation: fadeInUp 0.65s cubic-bezier(0.165, 0.84, 0.44, 1) 2.45s forwards;
}

.hero-title .highlight {
    color: var(--primary-orange);
    animation: fadeInOrange 0.7s cubic-bezier(0.165, 0.84, 0.44, 1) 2.6s forwards;
}

.hero-desc {
    font-size: 16px;
    font-weight: 400;
    color: #E2E8F0;
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 540px;
    opacity: 0;
    animation: fadeInSoft 0.7s ease 2.8s forwards;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 18px;
    opacity: 0;
    transform: scale(0.95) translateY(12px);
    animation: popScaleButtons 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 3.0s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInOrange {
    to {
        opacity: 1;
        transform: translateY(0);
        text-shadow: 0 0 20px rgba(239, 93, 34, 0.3);
    }
}

@keyframes fadeInSoft {
    to {
        opacity: 1;
    }
}

@keyframes popScaleButtons {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Button Component Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
    border: 2px solid var(--primary-orange);
    box-shadow: 0 6px 20px rgba(239, 93, 34, 0.35);
}

.btn-primary:hover {
    background-color: var(--primary-orange-hover);
    border-color: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(239, 93, 34, 0.45);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   6. VALUE PROPOSITION BAR / TRUST HIGHLIGHTS
   ========================================================================== */
.features-section {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    border-right: 1px solid #E2E8F0;
    transition: var(--transition-fast);
}

.feature-card:last-child {
    border-right: none;
}

.feature-icon {
    font-size: 32px;
    color: #2B303A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    transition: transform var(--transition-bounce);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15);
    color: var(--primary-orange);
}

.feature-text h3 {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
}

.feature-text p {
    font-size: 13px;
    font-weight: 600;
    color: #4A5568;
    line-height: 1.25;
}

/* ==========================================================================
   6.5 ABOUT SMARTSHADZ SECTION
   ========================================================================== */
.about-section {
    padding: 90px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 56px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background-color: var(--bg-light);
}

.about-img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.03);
}

.about-content-col {
    display: flex;
    flex-direction: column;
}

.about-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.6px;
    margin-bottom: 8px;
}

.about-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.about-description {
    color: #4A5568;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
    margin-bottom: 36px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: transform var(--transition-fast);
}

.highlight-item:hover {
    transform: translateY(-3px);
}

.highlight-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: rgba(239, 93, 34, 0.08);
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.highlight-item:hover .highlight-icon {
    background-color: var(--primary-orange);
    color: var(--white);
}

.highlight-text h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 4px;
}

.highlight-text p {
    font-size: 12px;
    color: #64748B;
    line-height: 1.35;
}

.btn-about {
    align-self: flex-start;
    padding: 14px 32px;
    border-radius: 6px;
}

/* ==========================================================================
   6.8 SHOP OUR COLLECTIONS SECTION
   ========================================================================== */
.collections-section {
    padding: 90px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    margin-bottom: 48px;
}

.section-header.text-center {
    text-align: center;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.6px;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.collection-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    border-radius: 20px;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s ease;
}

.collection-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin-bottom: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    background-color: var(--bg-light);
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.collection-card:hover {
    transform: translateY(-8px);
}

.collection-card:hover .collection-img {
    transform: scale(1.08);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 13, 14, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.explore-badge {
    background-color: var(--primary-orange);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 99px;
    transform: translateY(12px);
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(239, 93, 34, 0.4);
}

.collection-card:hover .explore-badge {
    transform: translateY(0);
}

.collection-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.collection-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    transition: color var(--transition-fast);
}

.collection-card:hover .collection-title {
    color: var(--primary-orange);
}

.collection-desc {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

/* ==========================================================================
   6.9 SHOP BY CATEGORY SUB-GRID SECTION
   ========================================================================== */
.subcategories-section {
    padding: 90px 0;
    background-color: #F8F9FA;
    border-bottom: 1px solid var(--border-color);
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 36px 20px;
}

.subcat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.subcat-icon-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1.5px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.subcat-svg {
    width: 48px;
    height: 48px;
    color: var(--primary-orange);
    transition: transform 0.3s ease, color 0.3s ease;
}

.subcat-card:hover .subcat-icon-circle {
    transform: translateY(-8px) scale(1.06);
    border-color: var(--primary-orange);
    background-color: rgba(239, 93, 34, 0.05);
    box-shadow: 0 12px 28px rgba(239, 93, 34, 0.18);
}

.subcat-card:hover .subcat-svg {
    transform: scale(1.08);
    color: var(--primary-orange-hover);
}

.subcat-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.subcat-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    transition: color var(--transition-fast);
}

.subcat-card:hover .subcat-title {
    color: var(--primary-orange);
}

.subcat-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.2;
}

/* ==========================================================================
   6.10 CUSTOM MADE BANNER SECTION
   ========================================================================== */
.custom-made-section {
    padding: 90px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.custom-banner-card {
    border-radius: 20px;
    overflow: hidden;
    background-color: #16181B;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
    margin-bottom: 28px;
}

.custom-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    min-height: 270px;
    max-height: 320px;
}

.custom-banner-content {
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.custom-eyebrow {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 0.2px;
    margin-bottom: 6px;
    display: inline-block;
}

.custom-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.custom-desc {
    font-size: 14px;
    color: #9CA3AF;
    line-height: 1.55;
    margin-bottom: 22px;
    max-width: 420px;
}

.btn-consultation {
    align-self: flex-start;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.custom-banner-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 270px;
    max-height: 320px;
    overflow: hidden;
}

.custom-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.custom-banner-card:hover .custom-img {
    transform: scale(1.04);
}

/* Custom Trust Bar */
.custom-trust-bar {
    background-color: var(--white);
    border: 1.5px solid #E2E8F0;
    border-radius: 16px;
    padding: 28px 36px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.custom-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.custom-trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 24px;
    border-right: 1px solid #E2E8F0;
    transition: transform 0.25s ease;
}

.custom-trust-item:last-child {
    border-right: none;
}

.custom-trust-item:hover {
    transform: translateY(-2px);
}

.trust-icon {
    font-size: 36px;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    transition: transform var(--transition-bounce);
}

.custom-trust-item:hover .trust-icon {
    transform: scale(1.15);
}

.trust-text h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 4px;
}

.trust-text p {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.35;
}

/* ==========================================================================
   6.11 BEST SELLERS CAROUSEL SECTION
   ========================================================================== */
.bestsellers-section {
    padding: 90px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow {
    position: absolute;
    z-index: 10;
    top: 36%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1.5px solid #E2E8F0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.prev-arrow {
    left: -22px;
}

.next-arrow {
    right: -22px;
}

.carousel-arrow:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    box-shadow: 0 8px 20px rgba(239, 93, 34, 0.35);
    transform: scale(1.1);
}

.carousel-track-container {
    width: 100%;
    overflow: hidden;
    padding: 12px 4px;
}

.carousel-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    transition: transform 0.4s ease;
}

.product-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: var(--white);
    border-radius: 16px;
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s ease;
}

.product-image-wrapper {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    margin-bottom: 14px;
    background-color: var(--bg-light);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.25;
}

.product-price {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.product-price span {
    font-weight: 800;
    color: var(--text-dark);
}

.btn-outline-cart {
    width: 100%;
    padding: 10px 18px;
    border-radius: 6px;
    border: 1.5px solid var(--primary-orange);
    color: var(--primary-orange);
    font-size: 13px;
    font-weight: 700;
    background-color: transparent;
    transition: all 0.25s ease;
}

.btn-outline-cart:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(239, 93, 34, 0.35);
    transform: translateY(-2px);
}

/* ==========================================================================
   6.12 MAIN FOOTER & TRUST BANNER
   ========================================================================== */
.main-footer {
    background-color: #121417;
    color: var(--white);
    font-family: var(--font-main);
}

.footer-trust-bar {
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.footer-trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.25s ease;
}

.footer-trust-item:last-child {
    border-right: none;
}

.footer-trust-item:hover {
    transform: translateY(-2px);
}

.footer-trust-icon {
    font-size: 30px;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.footer-trust-text h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2px;
    line-height: 1.2;
}

.footer-trust-text p {
    font-size: 13px;
    font-weight: 500;
    color: #9CA3AF;
    line-height: 1.2;
}

/* Footer Main Content */
.footer-main-content {
    padding: 70px 0 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.footer-brand-name {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.footer-bio {
    font-size: 14px;
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 320px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.25s ease;
}

.social-btn:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(239, 93, 34, 0.4);
}

.footer-col-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: #9CA3AF;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 4px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #9CA3AF;
}

.footer-contact-list i {
    color: var(--primary-orange);
    font-size: 15px;
    width: 18px;
    text-align: center;
}

.footer-contact-list a {
    color: #9CA3AF;
    transition: color 0.2s ease;
}

.footer-contact-list a:hover {
    color: var(--white);
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    padding: 24px 0;
    background-color: #0B0D0E;
    font-size: 13px;
    color: #9CA3AF;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pay-badge {
    font-size: 12px;
    font-weight: 800;
    color: #D1D5DB;
    background-color: rgba(255, 255, 255, 0.06);
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   7. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1100px) {
    .hero-title {
        font-size: 44px;
    }
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .feature-card {
        border-right: none;
        padding: 10px 0;
    }
    .nav-links {
        gap: 20px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .about-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .subcategories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px 16px;
    }
    .custom-banner-grid {
        grid-template-columns: 1fr;
    }
    .custom-banner-image {
        min-height: 300px;
    }
    .carousel-track {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
}

@media (max-width: 900px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .top-contact-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    .header-inner {
        flex-wrap: wrap;
    }
    .search-box {
        order: 3;
        max-width: 100%;
        width: 100%;
    }
    .mobile-toggle {
        display: block;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-lg);
        display: none;
        border-top: 1px solid var(--border-color);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-link {
        padding: 16px 24px;
        width: 100%;
        border-bottom: 1px solid #F1F5F9;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .subcategories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .custom-trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .custom-trust-item {
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
        padding: 12px 0;
    }
    .custom-trust-item:last-child {
        border-bottom: none;
    }
    .carousel-track {
        grid-template-columns: repeat(2, 1fr);
    }
    .prev-arrow {
        left: 0;
    }
    .next-arrow {
        right: 0;
    }
    .footer-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .footer-trust-item {
        border-right: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
    }
    .category-btn {
        min-width: 180px;
        padding: 12px 16px;
        font-size: 12px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .about-highlights-grid {
        grid-template-columns: 1fr;
    }
    .about-title, .section-title, .custom-title {
        font-size: 28px;
    }
    .about-subtitle {
        font-size: 17px;
    }
    .collections-grid {
        grid-template-columns: 1fr;
    }
    .subcategories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 12px;
    }
    .subcat-icon-circle {
        width: 90px;
        height: 90px;
    }
    .subcat-svg {
        width: 40px;
        height: 40px;
    }
    .custom-banner-content {
        padding: 36px 24px;
    }
    .carousel-track {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}
