/* HOME PAGE - Corporate Branding & Apparel Design */

/* ============================================================
   HERO SECTION
   ============================================================ */
.home-hero {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    min-height: calc(100vh - 72px - 80px);
}

@media (min-width: 1025px) {
    .hero-content {
        align-items: stretch;
        min-height: calc(100vh - 72px + 80px);
    }

    .hero-text {
        align-self: center;
    }

    .hero-visual {
        align-self: stretch;
        min-height: 100%;
    }

    .hero-image-area,
    .hero-carousel,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item {
        min-height: 100%;
        height: 100%;
    }

    .hero-scene {
        min-height: 100%;
        height: 100%;
    }
}

/* Hero Text */
.hero-text {
    padding: 10px 0;
}

.hero-headline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}

.hero-line {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(34px, 4.5vw, 54px);
    line-height: 1;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-line-1 {
    color: #0B1D3A;
}

.hero-line-2 {
    color: #0B1D3A;
}

.hero-line-3 {
    color: #FF2B5E;
}

.hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #63676C;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s;
}

.btn-hero-primary {
    background: #FF2B5E;
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 43, 94, 0.35);
}

.btn-hero-primary:hover {
    background: #E01A4F;
    box-shadow: 0 6px 28px rgba(255, 43, 94, 0.45);
    transform: translateY(-2px);
    color: #fff;
}

.btn-hero-primary svg {
    transition: transform 0.25s;
}

.btn-hero-primary:hover svg {
    transform: translateX(4px);
}

.btn-hero-secondary {
    background: #fff;
    color: #0B1D3A;
    border: 2px solid #0B1D3A;
}

.btn-hero-secondary:hover {
    background: #0B1D3A;
    color: #fff;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.hero-image-area {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.hero-scene {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(160deg, #E8ECF1 0%, #D5DBE3 40%, #C5CDD8 100%);
    border-radius: 20px;
    overflow: hidden;
}

.scene-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(255, 43, 94, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(11, 29, 58, 0.04) 0%, transparent 50%);
}

/* Models */
.scene-model {
    position: absolute;
    bottom: 40px;
}

.model-male {
    left: 10%;
    width: 120px;
    height: 260px;
}

.model-female {
    right: 12%;
    width: 110px;
    height: 250px;
}

.model-head {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #D4A574;
    margin: 0 auto 4px;
    position: relative;
}

.model-head::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #555;
    box-shadow: 8px 0 0 #555;
}

.model-male .model-head::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 8px solid #0B1D3A;
}

.model-suit {
    width: 90px;
    height: 160px;
    background: linear-gradient(180deg, #0B1D3A 0%, #152B52 100%);
    border-radius: 8px 8px 4px 4px;
    margin: 0 auto;
    position: relative;
}

.model-male .model-tie {
    position: absolute;
    top: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 50px;
    background: #FF2B5E;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
    z-index: 2;
}

.model-male .model-suit::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -6px;
    right: -6px;
    height: 30px;
    background: #fff;
    border-radius: 4px 4px 0 0;
}

.model-uniform {
    width: 85px;
    height: 150px;
    background: linear-gradient(180deg, #1A3366 0%, #0B1D3A 100%);
    border-radius: 8px 8px 4px 4px;
    margin: 0 auto;
    position: relative;
}

.model-female .model-uniform::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: #FF2B5E;
    border-radius: 4px;
}

.model-female .model-uniform::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 8px;
    right: 8px;
    height: 28px;
    background: #fff;
    border-radius: 4px;
}

/* Shelf */
.scene-shelf {
    position: absolute;
    right: 8%;
    top: 15%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(11, 29, 58, 0.12);
    width: 160px;
}

.shelf-item {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shelf-item svg {
    width: 100%;
    height: 100%;
}

.shelf-cap { grid-column: 1; grid-row: 1; }
.shelf-bottle { grid-column: 2; grid-row: 1; }
.shelf-notebook { grid-column: 3; grid-row: 1; }
.shelf-cap-2 { grid-column: 1; grid-row: 2; }
.shelf-gift { grid-column: 2; grid-row: 2; }
.shelf-pen { grid-column: 3; grid-row: 2; }

/* Scene Logo */
.scene-logo {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    letter-spacing: 4px;
    color: rgba(11, 29, 58, 0.08);
    white-space: nowrap;
}

/* Embroidery Machine */
.scene-machine {
    position: absolute;
    bottom: 35%;
    left: 45%;
    width: 60px;
    height: 48px;
    opacity: 0.3;
}

.scene-machine svg {
    width: 100%;
    height: 100%;
}

/* Fabric Rolls */
.scene-fabric {
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
}

.fabric-1 {
    bottom: 20%;
    right: 30%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #FF2B5E 0%, transparent 70%);
}

.fabric-2 {
    bottom: 15%;
    left: 35%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, #0B1D3A 0%, transparent 70%);
}

.fabric-3 {
    top: 35%;
    right: 45%;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, #FF2B5E 0%, transparent 70%);
    opacity: 0.15;
}

/* Hero Carousel */
.hero-carousel {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.hero-carousel .carousel-inner {
    height: 100%;
    min-height: 500px;
}

.hero-carousel .carousel-item {
    height: 100%;
    min-height: 500px;
}

.hero-carousel .carousel-item img {
    object-fit: cover;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    background-color: rgba(11, 29, 58, 0.4);
    border-radius: 50%;
    padding: 24px;
    background-size: 50%;
}

.hero-carousel .carousel-indicators {
    margin-bottom: 16px;
}

.hero-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    opacity: 0.7;
}

.hero-carousel .carousel-indicators button.active {
    background: #FF2B5E;
    border-color: #FF2B5E;
    opacity: 1;
}

/* ============================================================
   CATEGORIES SECTION
   ============================================================ */
.categories-section {
    padding: 0 32px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.categories-container {
    max-width: 1280px;
    margin: 0 auto;
}

.categories-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(11, 29, 58, 0.08), 0 2px 8px rgba(11, 29, 58, 0.04);
    padding: 48px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding: 24px 16px;
    border-radius: 16px;
    transition: all 0.25s;
    cursor: default;
}

.category-item:hover {
    background: rgba(255, 43, 94, 0.04);
}

.category-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon svg {
    width: 100%;
    height: 100%;
}

.category-item:hover .category-icon svg {
    stroke: #FF2B5E;
}

.category-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #0B1D3A;
    line-height: 1.3;
}

.category-item:hover .category-title {
    color: #FF2B5E;
}

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */
.featured-section {
    padding: 80px 32px;
}

.featured-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0B1D3A;
    margin-bottom: 36px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 48px;
    height: 3px;
    background: #FF2B5E;
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(11, 29, 58, 0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(11, 29, 58, 0.1);
}

.product-image {
    height: 240px;
    overflow: hidden;
    background: #F5F6F8;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-placeholder svg {
    opacity: 0.3;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0B1D3A;
    margin-bottom: 8px;
}

.product-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #FF2B5E;
    margin-bottom: 16px;
}

.product-price-original {
    font-size: 13px;
    font-weight: 500;
    color: #8A8F94;
    text-decoration: line-through;
    margin-left: 8px;
}

/* ============================================================
   FEATURES BAR
   ============================================================ */
.features-bar {
    background: #0B1D3A;
    padding: 32px;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   HOME PAGE OVERRIDES
   ============================================================ */
body.menu-open {
    overflow: hidden;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }

    .hero-visual {
        min-height: 400px;
    }

    .hero-image-area {
        min-height: 400px;
    }

    .hero-scene {
        min-height: 400px;
    }

    .hero-carousel,
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item {
        min-height: 400px;
    }

    .hero-text {
        padding: 60px 0 40px;
    }

    .categories-section {
        margin-top: 40px;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .header-container {
        padding: 0 20px;
    }

    .hero-container {
        padding: 0 20px;
    }

    .categories-section {
        padding: 0 20px;
    }

    .categories-card {
        padding: 32px 24px;
    }

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

    .category-item {
        padding: 16px 8px;
    }

    .hero-line {
        font-size: clamp(28px, 8vw, 40px);
    }

    .hero-description {
        font-size: 14px;
    }

    .btn-hero {
        padding: 12px 24px;
        font-size: 12px;
    }

    .featured-section {
        padding: 48px 20px;
    }

    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .feature-item {
        font-size: 11px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero {
        justify-content: center;
    }

    .scene-shelf {
        right: 5%;
        width: 130px;
        gap: 6px;
        padding: 8px;
    }

    .shelf-item {
        width: 34px;
        height: 34px;
    }
}
