/* =========================================================
   ASLI777 SNEAKERS STORE
   Urban Sneaker Store
   Main Stylesheet
   ========================================================= */

/* -------------------------
   RESET
------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #f6f6f4;
    color: #111111;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.section-padding {
    padding: 120px 0;
}

/* -------------------------
   ACCESSIBILITY
------------------------- */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* -------------------------
   ANNOUNCEMENT
------------------------- */

.announcement {
    background: #111111;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.announcement-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.announcement-line {
    width: 24px;
    height: 1px;
    background: #777777;
}

/* -------------------------
   HEADER
------------------------- */

.site-header {
    background: rgba(246, 246, 244, 0.96);
    border-bottom: 1px solid #deded9;
    position: relative;
    z-index: 20;
}

.header-inner {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Logo */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #111111;
    display: grid;
    place-items: center;
}

.logo-mark svg {
    width: 25px;
    height: 25px;
    fill: #ffffff;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text small {
    margin-top: 4px;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.6px;
}

/* Navigation */

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    font-size: 12px;
    font-weight: 600;
    color: #666666;
    transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #111111;
}

.main-nav a.active {
    position: relative;
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    background: #111111;
}

/* Header actions */

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.icon-button {
    width: 40px;
    height: 40px;
    background: transparent;
    display: grid;
    place-items: center;
}

.icon-button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: #111111;
    stroke-width: 1.5;
}

.bag-button {
    min-height: 42px;
    padding: 0 17px;
    background: #111111;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
}

.bag-button svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

/* -------------------------
   HERO
------------------------- */

.hero {
    padding: 65px 0 75px;
    border-bottom: 1px solid #deded9;
}

.hero-grid {
    min-height: 625px;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 70px;
    align-items: center;
}

/* Hero content */

.hero-content {
    padding: 20px 0 20px 25px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 25px;
    color: #6c6c67;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    background: #111111;
    border-radius: 50%;
}

.hero h1 {
    max-width: 600px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(58px, 7vw, 94px);
    font-weight: 800;
    letter-spacing: -6px;
    line-height: 0.92;
}

.hero h1 span {
    display: block;
    color: #777772;
    font-style: italic;
    font-weight: 500;
}

.hero-content > p {
    max-width: 470px;
    margin-top: 30px;
    color: #676762;
    font-size: 15px;
    line-height: 1.8;
}

/* Hero buttons */

.hero-buttons {
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    min-height: 51px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    font-size: 11px;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-dark {
    background: #111111;
    color: #ffffff;
}

.btn-dark span {
    font-size: 17px;
    font-weight: 400;
}

.btn-outline {
    border: 1px solid #bdbdb8;
    color: #111111;
}

/* Hero stats */

.hero-stats {
    margin-top: 52px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat strong {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.hero-stat span {
    margin-top: 3px;
    color: #858580;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 28px;
    background: #d3d3ce;
}

/* Hero visual */

.hero-visual {
    min-width: 0;
    position: relative;
}

.hero-image-wrap {
    height: 580px;
    position: relative;
    overflow: hidden;
    background: #deded9;
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.1),
            rgba(0,0,0,0.08)
        );
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.72);
}

.hero-floating-card {
    position: absolute;
    left: 25px;
    bottom: 25px;
    width: 205px;
    padding: 18px 19px;
    background: rgba(255,255,255,0.93);
    backdrop-filter: blur(8px);
}

.floating-label {
    display: block;
    margin-bottom: 7px;
    color: #777772;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.hero-floating-card strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.floating-price {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: #666666;
}

.hero-number {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    gap: 7px;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-number span:nth-child(2) {
    opacity: 0.5;
}

.vertical-text {
    position: absolute;
    right: -65px;
    top: 50%;
    transform: rotate(90deg) translateX(50%);
    transform-origin: center;
    color: #9a9a95;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* -------------------------
   BRAND STRIP
------------------------- */

.brand-strip {
    border-bottom: 1px solid #deded9;
    background: #f6f6f4;
}

.brand-strip-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand-strip-title {
    color: #92928c;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.brand-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.brand-links a {
    color: #4f4f4a;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
    transition: color 0.25s ease;
}

.brand-links a:hover {
    color: #111111;
}

/* -------------------------
   SECTION HEADING
------------------------- */

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

.section-kicker {
    display: block;
    margin-bottom: 18px;
    color: #888883;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-heading h2,
.story-content h2,
.newsletter-inner h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 5vw, 65px);
    font-weight: 800;
    letter-spacing: -3.5px;
    line-height: 0.98;
}

.section-heading h2 em,
.story-content h2 em,
.newsletter-inner h2 em,
.urban-content h2 em {
    color: #777772;
    font-style: italic;
    font-weight: 500;
}

.section-heading-right {
    width: 310px;
}

.section-heading-right p {
    color: #73736e;
    font-size: 12px;
    line-height: 1.8;
}

.text-link {
    margin-top: 23px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 5px;
    border-bottom: 1px solid #111111;
    font-size: 10px;
    font-weight: 700;
}

.text-link span {
    font-size: 15px;
    font-weight: 400;
}

/* -------------------------
   PRODUCT GRID
------------------------- */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    min-width: 0;
}

.product-image {
    height: 390px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-one {
    background: #e5e5e1;
}

.product-image-two {
    background: #dededa;
}

.product-image-three {
    background: #d8d8d3;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
    padding: 7px 9px;
    background: #111111;
    color: #ffffff;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.product-badge.light {
    background: #ffffff;
    color: #111111;
}

.favorite-button {
    position: absolute;
    top: 11px;
    right: 13px;
    z-index: 3;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.shoe-shape {
    width: 210px;
    height: 88px;
    border-radius: 80% 20% 20% 55%;
    transform: rotate(-14deg);
    position: relative;
    box-shadow: 25px 22px 35px rgba(0,0,0,0.18);
}

.shoe-shape::before {
    content: "";
    position: absolute;
    width: 85px;
    height: 50px;
    top: -27px;
    left: 60px;
    border-radius: 70% 35% 10% 0;
    transform: rotate(18deg);
    background: inherit;
}

.shoe-shape::after {
    content: "";
    position: absolute;
    left: 12px;
    bottom: -10px;
    width: 185px;
    height: 17px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
}

.shoe-shape span {
    position: absolute;
    left: 83px;
    top: 16px;
    width: 60px;
    height: 3px;
    background: rgba(255,255,255,0.35);
    transform: rotate(5deg);
    box-shadow:
        0 10px 0 rgba(255,255,255,0.35),
        0 20px 0 rgba(255,255,255,0.35);
}

.shoe-black {
    background: #161616;
}

.shoe-white {
    background: #f5f5f2;
    box-shadow: 25px 22px 35px rgba(0,0,0,0.11);
}

.shoe-gray {
    background: #676762;
}

.quick-shop {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    min-height: 45px;
    padding: 0 17px;
    background: #111111;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.product-image:hover .quick-shop {
    opacity: 1;
    transform: translateY(0);
}

.quick-shop span {
    font-size: 17px;
    font-weight: 400;
}

.product-info {
    padding: 18px 3px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.product-category {
    display: block;
    margin-bottom: 5px;
    color: #999994;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.product-info h3 {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 800;
}

.product-info > strong {
    white-space: nowrap;
    font-size: 11px;
    font-weight: 700;
}

/* -------------------------
   URBAN BANNER
------------------------- */

.urban-banner {
    padding: 0 0 120px;
}

.urban-banner-inner {
    min-height: 500px;
    padding: 70px 75px;
    position: relative;
    overflow: hidden;
    background: #111111;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.urban-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

.light-kicker {
    color: #878782;
}

.urban-content h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 800;
    letter-spacing: -4px;
    line-height: 0.95;
}

.urban-content p {
    max-width: 410px;
    margin-top: 28px;
    color: #a1a19c;
    font-size: 13px;
    line-height: 1.8;
}

.banner-button {
    margin-top: 35px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 7px;
    border-bottom: 1px solid #ffffff;
    font-size: 10px;
    font-weight: 700;
}

.banner-button span {
    font-size: 16px;
}

.urban-decoration {
    position: absolute;
    right: -35px;
    bottom: -35px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transform: rotate(-7deg);
    user-select: none;
}

.urban-decoration span {
    color: #1d1d1d;
    font-family: "Manrope", sans-serif;
    font-size: clamp(70px, 11vw, 160px);
    font-weight: 800;
    letter-spacing: -10px;
    line-height: 0.8;
}

/* -------------------------
   CATEGORY SECTION
------------------------- */

.category-section {
    border-bottom: 1px solid #deded9;
}

.section-heading.compact {
    align-items: center;
}

.section-heading.compact > p {
    max-width: 320px;
    color: #777772;
    font-size: 12px;
    line-height: 1.8;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.category-card {
    min-height: 290px;
    padding: 20px;
    position: relative;
    background: #e8e8e3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card.dark-card {
    background: #111111;
    color: #ffffff;
}

.category-number {
    position: relative;
    z-index: 2;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.category-icon {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%) rotate(-10deg);
}

.category-icon svg {
    width: 130px;
    height: 130px;
    fill: #cfcfc9;
}

.dark-card .category-icon svg {
    fill: #252525;
}

.category-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.category-bottom h3 {
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.category-bottom span {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* -------------------------
   STORY
------------------------- */

.story-section {
    padding: 125px 0;
    background: #eeeeea;
}

.story-grid {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 90px;
}

.story-label {
    display: flex;
    flex-direction: column;
    gap: 9px;
    color: #8b8b86;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.story-label span:first-child {
    color: #111111;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    letter-spacing: 0;
}

.story-content {
    max-width: 750px;
}

.story-content h2 {
    max-width: 650px;
}

.story-content p {
    max-width: 620px;
    margin-top: 27px;
    color: #6f6f6a;
    font-size: 14px;
    line-height: 1.9;
}

.dark-link {
    margin-top: 35px;
}

/* -------------------------
   NEWSLETTER
------------------------- */

.newsletter-section {
    padding: 105px 0;
    background: #ffffff;
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
}

.newsletter-form-wrap {
    max-width: 460px;
}

.newsletter-form-wrap > p {
    margin-bottom: 25px;
    color: #777772;
    font-size: 12px;
    line-height: 1.8;
}

.newsletter-form {
    min-height: 52px;
    border-bottom: 1px solid #111111;
    display: flex;
}

.newsletter-form input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: #111111;
    font-size: 12px;
}

.newsletter-form input::placeholder {
    color: #999994;
}

.newsletter-form button {
    padding: 0 0 0 15px;
    background: transparent;
    color: #111111;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    font-weight: 700;
}

.newsletter-form button span {
    font-size: 17px;
}

/* -------------------------
   FOOTER
------------------------- */

.site-footer {
    background: #111111;
    color: #ffffff;
    padding: 75px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 50px;
    padding-bottom: 65px;
    border-bottom: 1px solid #2d2d2d;
}

.footer-logo .logo-mark {
    background: #ffffff;
}

.footer-logo .logo-mark svg {
    fill: #111111;
}

.footer-logo .logo-text small {
    color: #8c8c87;
}

.footer-brand p {
    max-width: 240px;
    margin-top: 22px;
    color: #777772;
    font-size: 11px;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    margin-bottom: 8px;
    color: #888883;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.footer-column a {
    color: #d0d0cb;
    font-size: 11px;
    transition: color 0.25s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: #666661;
    font-size: 8px;
    letter-spacing: 0.3px;
}

/* -------------------------
   RESPONSIVE
------------------------- */

@media (max-width: 1100px) {

    .container {
        width: min(100% - 36px, 1000px);
    }

    .header-inner {
        gap: 20px;
    }

    .main-nav {
        gap: 20px;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero-content {
        padding-left: 0;
    }

    .hero h1 {
        font-size: clamp(54px, 7vw, 75px);
    }

    .hero-image-wrap {
        height: 520px;
    }

    .vertical-text {
        display: none;
    }

    .brand-links {
        gap: 20px;
    }

    .category-card {
        min-height: 260px;
    }
}

@media (max-width: 850px) {

    .section-padding {
        padding: 90px 0;
    }

    .main-nav {
        display: none;
    }

    .hero {
        padding: 45px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero-content {
        padding: 0;
    }

    .hero h1 {
        max-width: 700px;
        font-size: clamp(55px, 12vw, 90px);
    }

    .hero-image-wrap {
        height: 550px;
    }

    .brand-strip-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 20px 0;
    }

    .brand-links {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .brand-links a {
        white-space: nowrap;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .section-heading-right {
        width: 100%;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 10px);
    }

    .urban-banner-inner {
        padding: 60px 45px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .story-label {
        flex-direction: row;
        align-items: center;
    }

    .newsletter-inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-top {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {

    .container {
        width: min(100% - 28px, 100%);
    }

    .announcement {
        font-size: 7px;
    }

    .announcement-inner {
        gap: 8px;
        letter-spacing: 1px;
    }

    .header-inner {
        height: 74px;
    }

    .logo-mark {
        width: 34px;
        height: 34px;
    }

    .logo-text strong {
        font-size: 16px;
    }

    .logo-text small {
        font-size: 6px;
    }

    .icon-button {
        display: none;
    }

    .bag-button {
        min-height: 37px;
        padding: 0 12px;
    }

    .bag-button span {
        display: none;
    }

    .hero {
        padding: 40px 0 50px;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero h1 {
        font-size: clamp(50px, 17vw, 74px);
        letter-spacing: -4px;
    }

    .hero-content > p {
        font-size: 13px;
    }

    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 12px;
        justify-content: space-between;
    }

    .hero-stat strong {
        font-size: 15px;
    }

    .hero-stat span {
        font-size: 7px;
    }

    .stat-divider {
        height: 25px;
    }

    .hero-image-wrap {
        height: 420px;
    }

    .hero-floating-card {
        left: 15px;
        bottom: 15px;
        width: 185px;
    }

    .section-padding {
        padding: 75px 0;
    }

    .section-heading h2,
    .story-content h2,
    .newsletter-inner h2 {
        font-size: 43px;
        letter-spacing: -2.5px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .product-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .product-image {
        height: 370px;
    }

    .quick-shop {
        opacity: 1;
        transform: none;
    }

    .urban-banner {
        padding-bottom: 75px;
    }

    .urban-banner-inner {
        min-height: 500px;
        padding: 45px 28px;
        align-items: flex-start;
    }

    .urban-content h2 {
        font-size: 51px;
        letter-spacing: -3px;
    }

    .urban-decoration {
        right: -20px;
        bottom: 25px;
    }

    .urban-decoration span {
        font-size: 80px;
        letter-spacing: -6px;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .category-card {
        min-height: 210px;
        padding: 15px;
    }

    .category-icon svg {
        width: 90px;
        height: 90px;
    }

    .category-bottom h3 {
        font-size: 16px;
    }

    .category-bottom span {
        display: none;
    }

    .story-section {
        padding: 80px 0;
    }

    .story-content p {
        font-size: 13px;
    }

    .newsletter-section {
        padding: 75px 0;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}
/* =========================================================
   ASLI777 SNEAKERS STORE
   URBAN SNEAKER STORE
   COMPLETE STYLESHEET
   PART 3
   ========================================================= */

/* =========================================================
   RESET & BASE
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #f6f6f4;
    color: #111111;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.section-padding {
    padding: 120px 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* =========================================================
   ANNOUNCEMENT BAR
   ========================================================= */

.announcement {
    background: #111111;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.announcement-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.announcement-line {
    width: 24px;
    height: 1px;
    background: #777777;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    background: rgba(246, 246, 244, 0.96);
    border-bottom: 1px solid #deded9;
    position: relative;
    z-index: 20;
}

.header-inner {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #111111;
    display: grid;
    place-items: center;
}

.logo-mark svg {
    width: 25px;
    height: 25px;
    fill: #ffffff;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text small {
    margin-top: 4px;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.6px;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    font-size: 12px;
    font-weight: 600;
    color: #666666;
    transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #111111;
}

.main-nav a.active {
    position: relative;
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    background: #111111;
}


/* =========================================================
   HEADER ACTIONS
   ========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.icon-button {
    width: 40px;
    height: 40px;
    background: transparent;
    display: grid;
    place-items: center;
}

.icon-button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: #111111;
    stroke-width: 1.5;
}

.bag-button {
    min-height: 42px;
    padding: 0 17px;
    background: #111111;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
}

.bag-button svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}


/* =========================================================
   HOME HERO
   ========================================================= */

.hero {
    padding: 65px 0 75px;
    border-bottom: 1px solid #deded9;
}

.hero-grid {
    min-height: 625px;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 70px;
    align-items: center;
}

.hero-content {
    padding: 20px 0 20px 25px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 25px;
    color: #6c6c67;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    background: #111111;
    border-radius: 50%;
}

.hero h1 {
    max-width: 600px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(58px, 7vw, 94px);
    font-weight: 800;
    letter-spacing: -6px;
    line-height: 0.92;
}

.hero h1 span {
    display: block;
    color: #777772;
    font-style: italic;
    font-weight: 500;
}

.hero-content > p {
    max-width: 470px;
    margin-top: 30px;
    color: #676762;
    font-size: 15px;
    line-height: 1.8;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    min-height: 51px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    font-size: 11px;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-dark {
    background: #111111;
    color: #ffffff;
}

.btn-dark span {
    font-size: 17px;
    font-weight: 400;
}

.btn-outline {
    border: 1px solid #bdbdb8;
    color: #111111;
}

.hero-stats {
    margin-top: 52px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat strong {
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.hero-stat span {
    margin-top: 3px;
    color: #858580;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 28px;
    background: #d3d3ce;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {
    min-width: 0;
    position: relative;
}

.hero-image-wrap {
    height: 580px;
    position: relative;
    overflow: hidden;
    background: #deded9;
}

.hero-image-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.1),
            rgba(0,0,0,0.08)
        );
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.72);
}

.hero-floating-card {
    position: absolute;
    left: 25px;
    bottom: 25px;
    width: 205px;
    padding: 18px 19px;
    background: rgba(255,255,255,0.93);
    backdrop-filter: blur(8px);
}

.floating-label {
    display: block;
    margin-bottom: 7px;
    color: #777772;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.hero-floating-card strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.floating-price {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: #666666;
}

.hero-number {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    gap: 7px;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-number span:nth-child(2) {
    opacity: 0.5;
}

.vertical-text {
    position: absolute;
    right: -65px;
    top: 50%;
    transform: rotate(90deg) translateX(50%);
    transform-origin: center;
    color: #9a9a95;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
    white-space: nowrap;
}


/* =========================================================
   BRAND STRIP
   ========================================================= */

.brand-strip {
    border-bottom: 1px solid #deded9;
    background: #f6f6f4;
}

.brand-strip-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand-strip-title {
    color: #92928c;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.brand-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.brand-links a {
    color: #4f4f4a;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
    transition: color 0.25s ease;
}

.brand-links a:hover {
    color: #111111;
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

.section-kicker {
    display: block;
    margin-bottom: 18px;
    color: #888883;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-heading h2,
.story-content h2,
.newsletter-inner h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 5vw, 65px);
    font-weight: 800;
    letter-spacing: -3.5px;
    line-height: 0.98;
}

.section-heading h2 em,
.story-content h2 em,
.newsletter-inner h2 em,
.urban-content h2 em {
    color: #777772;
    font-style: italic;
    font-weight: 500;
}

.section-heading-right {
    width: 310px;
}

.section-heading-right p {
    color: #73736e;
    font-size: 12px;
    line-height: 1.8;
}

.text-link {
    margin-top: 23px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 5px;
    border-bottom: 1px solid #111111;
    font-size: 10px;
    font-weight: 700;
}

.text-link span {
    font-size: 15px;
    font-weight: 400;
}


/* =========================================================
   HOME PRODUCT GRID
   ========================================================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    min-width: 0;
}

.product-image {
    height: 390px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-one {
    background: #e5e5e1;
}

.product-image-two {
    background: #dededa;
}

.product-image-three {
    background: #d8d8d3;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
    padding: 7px 9px;
    background: #111111;
    color: #ffffff;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.product-badge.light {
    background: #ffffff;
    color: #111111;
}

.favorite-button {
    position: absolute;
    top: 11px;
    right: 13px;
    z-index: 3;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.shoe-shape {
    width: 210px;
    height: 88px;
    border-radius: 80% 20% 20% 55%;
    transform: rotate(-14deg);
    position: relative;
    box-shadow: 25px 22px 35px rgba(0,0,0,0.18);
}

.shoe-shape::before {
    content: "";
    position: absolute;
    width: 85px;
    height: 50px;
    top: -27px;
    left: 60px;
    border-radius: 70% 35% 10% 0;
    transform: rotate(18deg);
    background: inherit;
}

.shoe-shape::after {
    content: "";
    position: absolute;
    left: 12px;
    bottom: -10px;
    width: 185px;
    height: 17px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
}

.shoe-shape span {
    position: absolute;
    left: 83px;
    top: 16px;
    width: 60px;
    height: 3px;
    background: rgba(255,255,255,0.35);
    transform: rotate(5deg);
    box-shadow:
        0 10px 0 rgba(255,255,255,0.35),
        0 20px 0 rgba(255,255,255,0.35);
}

.shoe-black {
    background: #161616;
}

.shoe-white {
    background: #f5f5f2;
    box-shadow: 25px 22px 35px rgba(0,0,0,0.11);
}

.shoe-gray {
    background: #676762;
}

.quick-shop {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    min-height: 45px;
    padding: 0 17px;
    background: #111111;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.product-image:hover .quick-shop {
    opacity: 1;
    transform: translateY(0);
}

.quick-shop span {
    font-size: 17px;
    font-weight: 400;
}

.product-info {
    padding: 18px 3px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.product-category {
    display: block;
    margin-bottom: 5px;
    color: #999994;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.product-info h3 {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 800;
}

.product-info > strong {
    white-space: nowrap;
    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   URBAN BANNER
   ========================================================= */

.urban-banner {
    padding: 0 0 120px;
}

.urban-banner-inner {
    min-height: 500px;
    padding: 70px 75px;
    position: relative;
    overflow: hidden;
    background: #111111;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.urban-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
}

.light-kicker {
    color: #878782;
}

.urban-content h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 800;
    letter-spacing: -4px;
    line-height: 0.95;
}

.urban-content p {
    max-width: 410px;
    margin-top: 28px;
    color: #a1a19c;
    font-size: 13px;
    line-height: 1.8;
}

.banner-button {
    margin-top: 35px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 7px;
    border-bottom: 1px solid #ffffff;
    font-size: 10px;
    font-weight: 700;
}

.banner-button span {
    font-size: 16px;
}

.urban-decoration {
    position: absolute;
    right: -35px;
    bottom: -35px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transform: rotate(-7deg);
    user-select: none;
}

.urban-decoration span {
    color: #1d1d1d;
    font-family: "Manrope", sans-serif;
    font-size: clamp(70px, 11vw, 160px);
    font-weight: 800;
    letter-spacing: -10px;
    line-height: 0.8;
}


/* =========================================================
   CATEGORY SECTION
   ========================================================= */

.category-section {
    border-bottom: 1px solid #deded9;
}

.section-heading.compact {
    align-items: center;
}

.section-heading.compact > p {
    max-width: 320px;
    color: #777772;
    font-size: 12px;
    line-height: 1.8;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.category-card {
    min-height: 290px;
    padding: 20px;
    position: relative;
    background: #e8e8e3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card.dark-card {
    background: #111111;
    color: #ffffff;
}

.category-number {
    position: relative;
    z-index: 2;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.category-icon {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%) rotate(-10deg);
}

.category-icon svg {
    width: 130px;
    height: 130px;
    fill: #cfcfc9;
}

.dark-card .category-icon svg {
    fill: #252525;
}

.category-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.category-bottom h3 {
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.category-bottom span {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================================
   STORY SECTION
   ========================================================= */

.story-section {
    padding: 125px 0;
    background: #eeeeea;
}

.story-grid {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 90px;
}

.story-label {
    display: flex;
    flex-direction: column;
    gap: 9px;
    color: #8b8b86;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.story-label span:first-child {
    color: #111111;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    letter-spacing: 0;
}

.story-content {
    max-width: 750px;
}

.story-content h2 {
    max-width: 650px;
}

.story-content p {
    max-width: 620px;
    margin-top: 27px;
    color: #6f6f6a;
    font-size: 14px;
    line-height: 1.9;
}

.dark-link {
    margin-top: 35px;
}


/* =========================================================
   NEWSLETTER
   ========================================================= */

.newsletter-section {
    padding: 105px 0;
    background: #ffffff;
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
}

.newsletter-form-wrap {
    max-width: 460px;
}

.newsletter-form-wrap > p {
    margin-bottom: 25px;
    color: #777772;
    font-size: 12px;
    line-height: 1.8;
}

.newsletter-form {
    min-height: 52px;
    border-bottom: 1px solid #111111;
    display: flex;
}

.newsletter-form input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: #111111;
    font-size: 12px;
}

.newsletter-form input::placeholder {
    color: #999994;
}

.newsletter-form button {
    padding: 0 0 0 15px;
    background: transparent;
    color: #111111;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    font-weight: 700;
}

.newsletter-form button span {
    font-size: 17px;
}


/* =========================================================
   PRODUCTS PAGE
   ========================================================= */

.products-hero {
    padding: 45px 0 90px;
    border-bottom: 1px solid #deded9;
}

.products-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 70px;
    color: #969691;
    font-size: 9px;
    font-weight: 600;
}

.products-breadcrumb strong {
    color: #111111;
}

.products-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 80px;
}

.products-hero h1 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(60px, 8vw, 105px);
    font-weight: 800;
    letter-spacing: -6px;
    line-height: 0.86;
}

.products-hero h1 em {
    color: #777772;
    font-style: italic;
    font-weight: 500;
}

.products-intro {
    max-width: 360px;
    padding-bottom: 5px;
}

.products-intro > p {
    color: #70706b;
    font-size: 13px;
    line-height: 1.9;
}

.collection-count {
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 13px;
}

.collection-count strong {
    font-family: "Manrope", sans-serif;
    font-size: 34px;
    line-height: 1;
}

.collection-count span {
    color: #898984;
    font-size: 8px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1.2px;
}


/* =========================================================
   PRODUCT TOOLBAR
   ========================================================= */

.products-toolbar {
    background: #ffffff;
    border-bottom: 1px solid #deded9;
}

.products-toolbar-inner {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.filter-label {
    color: #999994;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.product-filters {
    display: flex;
    align-items: center;
    gap: 28px;
}

.product-filters a {
    padding: 5px 0;
    color: #777772;
    font-size: 10px;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.product-filters a:hover,
.product-filters a.filter-active {
    color: #111111;
    border-bottom-color: #111111;
}

.sort-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #92928d;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
}

.sort-label span:first-child {
    color: #111111;
}

.sort-line {
    width: 25px;
    height: 1px;
    background: #c8c8c3;
}


/* =========================================================
   CATALOG
   ========================================================= */

.catalog-section {
    background: #f6f6f4;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 65px 20px;
}

.catalog-product {
    min-width: 0;
}

.catalog-image {
    height: 455px;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.catalog-bg-one {
    background: #e3e3de;
}

.catalog-bg-two {
    background: #ddddda;
}

.catalog-bg-three {
    background: #d5d5d0;
}

.catalog-bg-four {
    background: #e8e8e4;
}

.catalog-bg-five {
    background: #d9d9d4;
}

.catalog-bg-six {
    background: #e1e1dc;
}

.catalog-bg-seven {
    background: #d4d4cf;
}

.catalog-bg-eight {
    background: #e7e7e2;
}

.catalog-bg-nine {
    background: #dadad5;
}

.catalog-number {
    position: absolute;
    top: 17px;
    left: 17px;
    z-index: 4;
    color: #777772;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
}

.catalog-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 4;
    padding: 7px 9px;
    background: #111111;
    color: #ffffff;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.catalog-badge-white {
    background: #ffffff;
    color: #111111;
}

.catalog-heart {
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 5;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #111111;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.25s ease;
}

.catalog-heart:hover {
    transform: scale(1.08);
}

.catalog-shoe {
    z-index: 2;
    transition: transform 0.45s ease;
}

.catalog-image:hover .catalog-shoe {
    transform: rotate(-18deg) scale(1.08);
}

.catalog-view {
    position: absolute;
    left: 15px;
    right: 68px;
    bottom: 15px;
    z-index: 5;
    min-height: 48px;
    padding: 0 17px;
    background: #111111;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.catalog-image:hover .catalog-view {
    opacity: 1;
    transform: translateY(0);
}

.catalog-view span {
    font-size: 16px;
    font-weight: 400;
}

.catalog-info {
    padding: 19px 3px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.catalog-info h2 {
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
}

.catalog-info > strong {
    padding-top: 13px;
    white-space: nowrap;
    font-size: 11px;
    font-weight: 700;
}

.catalog-meta {
    padding: 8px 3px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #999994;
    font-size: 8px;
    font-weight: 600;
}

.catalog-meta span:last-child {
    letter-spacing: 2px;
    color: #777772;
}


/* =========================================================
   CATALOG PAGINATION
   ========================================================= */

.catalog-pagination {
    margin-top: 85px;
    padding-top: 25px;
    border-top: 1px solid #d7d7d2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.catalog-pagination a,
.pagination-current,
.pagination-dots {
    font-size: 9px;
    font-weight: 700;
}

.catalog-pagination a {
    color: #999994;
    transition: color 0.25s ease;
}

.catalog-pagination a:hover {
    color: #111111;
}

.pagination-current {
    color: #111111;
}

.pagination-dots {
    color: #aaa9a4;
}

.pagination-line {
    width: 40px;
    height: 1px;
    background: #c9c9c4;
}

.pagination-next {
    margin-left: 15px;
    padding-left: 20px;
    border-left: 1px solid #d1d1cc;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.pagination-next span {
    font-size: 15px;
    font-weight: 400;
}


/* =========================================================
   CATALOG CTA
   ========================================================= */

.catalog-cta {
    padding: 0 0 120px;
}

.catalog-cta-inner {
    min-height: 410px;
    padding: 65px 75px;
    background: #111111;
    color: #ffffff;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 70px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.catalog-cta-inner::after {
    content: "777";
    position: absolute;
    right: -25px;
    bottom: -85px;
    font-family: "Manrope", sans-serif;
    font-size: 260px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -25px;
    color: #191919;
    pointer-events: none;
}

.catalog-cta-inner > div {
    position: relative;
    z-index: 2;
}

.catalog-cta-inner h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    letter-spacing: -4px;
    line-height: 0.94;
}

.catalog-cta-inner h2 em {
    color: #777772;
    font-style: italic;
    font-weight: 500;
}

.catalog-cta-content {
    max-width: 360px;
}

.catalog-cta-content p {
    color: #999994;
    font-size: 12px;
    line-height: 1.8;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #111111;
    color: #ffffff;
    padding: 75px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 50px;
    padding-bottom: 65px;
    border-bottom: 1px solid #2d2d2d;
}

.footer-logo .logo-mark {
    background: #ffffff;
}

.footer-logo .logo-mark svg {
    fill: #111111;
}

.footer-logo .logo-text small {
    color: #8c8c87;
}

.footer-brand p {
    max-width: 240px;
    margin-top: 22px;
    color: #777772;
    font-size: 11px;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    margin-bottom: 8px;
    color: #888883;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.footer-column a {
    color: #d0d0cb;
    font-size: 11px;
    transition: color 0.25s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: #666661;
    font-size: 8px;
    letter-spacing: 0.3px;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .container {
        width: min(100% - 36px, 1000px);
    }

    .header-inner {
        gap: 20px;
    }

    .main-nav {
        gap: 20px;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero-content {
        padding-left: 0;
    }

    .hero h1 {
        font-size: clamp(54px, 7vw, 75px);
    }

    .hero-image-wrap {
        height: 520px;
    }

    .vertical-text {
        display: none;
    }

    .brand-links {
        gap: 20px;
    }

    .category-card {
        min-height: 260px;
    }

    .products-hero-grid {
        gap: 50px;
    }

    .products-hero h1 {
        font-size: clamp(58px, 8vw, 85px);
    }

    .catalog-image {
        height: 390px;
    }

    .catalog-grid {
        gap: 50px 15px;
    }
}


/* =========================================================
   RESPONSIVE — SMALL TABLET
   ========================================================= */

@media (max-width: 850px) {

    .section-padding {
        padding: 90px 0;
    }

    .main-nav {
        display: none;
    }

    .hero {
        padding: 45px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero-content {
        padding: 0;
    }

    .hero h1 {
        max-width: 700px;
        font-size: clamp(55px, 12vw, 90px);
    }

    .hero-image-wrap {
        height: 550px;
    }

    .brand-strip-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 20px 0;
    }

    .brand-links {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .brand-links a {
        white-space: nowrap;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .section-heading-right {
        width: 100%;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 10px);
    }

    .urban-banner-inner {
        padding: 60px 45px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .story-label {
        flex-direction: row;
        align-items: center;
    }

    .newsletter-inner {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-top {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }


    /* Products */

    .products-hero {
        padding-bottom: 70px;
    }

    .products-breadcrumb {
        margin-bottom: 50px;
    }

    .products-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .products-intro {
        max-width: 500px;
    }

    .products-toolbar-inner {
        overflow-x: auto;
        justify-content: flex-start;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .filter-label,
    .sort-label {
        flex-shrink: 0;
    }

    .product-filters {
        flex-shrink: 0;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-image {
        height: 430px;
    }

    .catalog-cta-inner {
        padding: 60px 45px;
        grid-template-columns: 1fr;
        gap: 45px;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 560px) {

    .container {
        width: min(100% - 28px, 100%);
    }

    .announcement {
        font-size: 7px;
    }

    .announcement-inner {
        gap: 8px;
        letter-spacing: 1px;
    }

    .header-inner {
        height: 74px;
    }

    .logo-mark {
        width: 34px;
        height: 34px;
    }

    .logo-text strong {
        font-size: 16px;
    }

    .logo-text small {
        font-size: 6px;
    }

    .icon-button {
        display: none;
    }

    .bag-button {
        min-height: 37px;
        padding: 0 12px;
    }

    .bag-button span {
        display: none;
    }


    /* Home Hero */

    .hero {
        padding: 40px 0 50px;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero h1 {
        font-size: clamp(50px, 17vw, 74px);
        letter-spacing: -4px;
    }

    .hero-content > p {
        font-size: 13px;
    }

    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 12px;
        justify-content: space-between;
    }

    .hero-stat strong {
        font-size: 15px;
    }

    .hero-stat span {
        font-size: 7px;
    }

    .stat-divider {
        height: 25px;
    }

    .hero-image-wrap {
        height: 420px;
    }

    .hero-floating-card {
        left: 15px;
        bottom: 15px;
        width: 185px;
    }


    /* Home Sections */

    .section-padding {
        padding: 75px 0;
    }

    .section-heading h2,
    .story-content h2,
    .newsletter-inner h2 {
        font-size: 43px;
        letter-spacing: -2.5px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .product-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .product-image {
        height: 370px;
    }

    .quick-shop {
        opacity: 1;
        transform: none;
    }

    .urban-banner {
        padding-bottom: 75px;
    }

    .urban-banner-inner {
        min-height: 500px;
        padding: 45px 28px;
        align-items: flex-start;
    }

    .urban-content h2 {
        font-size: 51px;
        letter-spacing: -3px;
    }

    .urban-decoration {
        right: -20px;
        bottom: 25px;
    }

    .urban-decoration span {
        font-size: 80px;
        letter-spacing: -6px;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .category-card {
        min-height: 210px;
        padding: 15px;
    }

    .category-icon svg {
        width: 90px;
        height: 90px;
    }

    .category-bottom h3 {
        font-size: 16px;
    }

    .category-bottom span {
        display: none;
    }

    .story-section {
        padding: 80px 0;
    }

    .story-content p {
        font-size: 13px;
    }

    .newsletter-section {
        padding: 75px 0;
    }


    /* Products Page */

    .products-hero {
        padding: 35px 0 60px;
    }

    .products-breadcrumb {
        margin-bottom: 45px;
    }

    .products-hero h1 {
        font-size: clamp(53px, 16vw, 72px);
        letter-spacing: -4px;
    }

    .products-intro > p {
        font-size: 12px;
    }

    .collection-count {
        margin-top: 25px;
    }

    .products-toolbar-inner {
        width: max-content;
        min-width: 100%;
    }

    .filter-label {
        display: none;
    }

    .product-filters {
        gap: 20px;
    }

    .product-filters a {
        font-size: 9px;
    }

    .sort-label {
        display: none;
    }

    .catalog-section {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .catalog-image {
        height: 400px;
    }

    .catalog-info h2 {
        font-size: 16px;
    }

    .catalog-info > strong {
        font-size: 10px;
    }

    .catalog-view {
        opacity: 1;
        transform: none;
    }

    .catalog-pagination {
        margin-top: 60px;
        gap: 15px;
    }

    .catalog-pagination a:nth-of-type(2) {
        display: none;
    }

    .pagination-line {
        width: 25px;
    }

    .pagination-next {
        margin-left: 5px;
        padding-left: 12px;
    }

    .catalog-cta {
        padding-bottom: 75px;
    }

    .catalog-cta-inner {
        min-height: 500px;
        padding: 50px 28px;
        gap: 45px;
    }

    .catalog-cta-inner h2 {
        font-size: 51px;
        letter-spacing: -3px;
    }

    .catalog-cta-inner::after {
        font-size: 170px;
        bottom: -45px;
    }


    /* Footer */

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
/* =========================================================
   CATEGORY FEATURE
   ========================================================= */

.category-feature {
    margin-top: 70px;
    min-height: 520px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    overflow: hidden;
    background: #111111;
    color: #ffffff;
}

.category-feature-copy {
    padding: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-feature-copy h3 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(50px, 6vw, 78px);
    font-weight: 800;
    letter-spacing: -4px;
    line-height: .9;
}

.category-feature-copy h3 em {
    color: #777772;
    font-style: italic;
    font-weight: 500;
}

.category-feature-copy p {
    max-width: 360px;
    margin-top: 28px;
    color: #999994;
    font-size: 12px;
    line-height: 1.9;
}

.category-feature-copy .text-link {
    width: max-content;
    color: #ffffff;
    border-color: #ffffff;
}

.category-feature-art {
    min-height: 520px;
    position: relative;
    overflow: hidden;
    background: #d8d8d3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-art-text {
    position: absolute;
    right: -25px;
    bottom: -25px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(90px, 13vw, 190px);
    font-weight: 800;
    letter-spacing: -12px;
    line-height: .8;
    color: rgba(255,255,255,.42);
}

.feature-shoe {
    position: relative;
    z-index: 2;
    transform: scale(1.35) rotate(-8deg);
}

.feature-shoe .shoe-shape {
    width: 290px;
    height: 115px;
}

.feature-shoe .shoe-shape::after {
    width: 255px;
}

@media (max-width: 850px) {
    .category-feature {
        grid-template-columns: 1fr;
    }

    .category-feature-copy {
        padding: 55px 40px;
    }

    .category-feature-art {
        min-height: 360px;
    }
}

@media (max-width: 560px) {
    .category-feature {
        margin-top: 45px;
    }

    .category-feature-copy {
        padding: 45px 28px;
    }

    .category-feature-copy h3 {
        font-size: 52px;
        letter-spacing: -3px;
    }

    .category-feature-art {
        min-height: 300px;
    }

    .feature-shoe {
        transform: scale(.9) rotate(-8deg);
    }

    .feature-art-text {
        font-size: 90px;
        letter-spacing: -7px;
    }
}

/* =========================================================
   LEGAL PAGES
   ========================================================= */

.legal-section {
    background: #f6f6f4;
}

.legal-content {
    max-width: 820px;
}

.legal-content h2 {
    margin-top: 48px;
    margin-bottom: 15px;
    font-family: "Manrope", sans-serif;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -1px;
}

.legal-content p {
    max-width: 760px;
    color: #6e6e69;
    font-size: 13px;
    line-height: 1.95;
}

.legal-content .text-link {
    margin-top: 40px;
}

@media (max-width: 560px) {

    .legal-content h2 {
        margin-top: 38px;
        font-size: 20px;
    }

    .legal-content p {
        font-size: 12px;
    }
}
/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
    border-top: 1px solid #d5d5d0;
}

.faq-item {
    border-bottom: 1px solid #d5d5d0;
}

.faq-item summary {
    min-height: 95px;
    padding: 0 5px;
    display: grid;
    grid-template-columns: 55px 1fr 30px;
    align-items: center;
    gap: 20px;
    list-style: none;
    cursor: pointer;
    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    color: #999994;
    font-size: 9px;
    font-family: "Inter", sans-serif;
}

.faq-item summary b {
    font-size: 22px;
    font-weight: 400;
    text-align: right;
    transition: transform .25s ease;
}

.faq-item[open] summary b {
    transform: rotate(45deg);
}

.faq-item p {
    max-width: 760px;
    padding: 0 50px 35px 75px;
    color: #73736e;
    font-size: 12px;
    line-height: 1.9;
}


/* =========================================================
   REVIEWS
   ========================================================= */

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.review-card {
    min-height: 350px;
    padding: 28px;
    position: relative;
    background: #e6e6e1;
    display: flex;
    flex-direction: column;
}

.review-card.dark-review {
    background: #111111;
    color: #ffffff;
}

.review-number {
    color: #888883;
    font-size: 9px;
    font-weight: 700;
}

.review-stars {
    margin-top: 65px;
    font-size: 10px;
    letter-spacing: 3px;
}

.review-card p {
    margin-top: 22px;
    color: #666661;
    font-size: 12px;
    line-height: 1.9;
}

.dark-review p {
    color: #a0a09b;
}

.review-card strong {
    margin-top: auto;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
}

.review-card small {
    margin-top: 3px;
    color: #999994;
    font-size: 8px;
    letter-spacing: 1px;
}

@media (max-width: 850px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {

    .faq-item summary {
        min-height: 80px;
        grid-template-columns: 35px 1fr 20px;
        gap: 10px;
        font-size: 14px;
    }

    .faq-item p {
        padding: 0 20px 28px 45px;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        min-height: 310px;
    }
}
