/* ==========================================================================
   DOBROTKY OD BETKY - Design System
   Presne podľa Figma dizajnu
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. FONTY
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* Switzer Font - from Figma design */
@font-face {
    font-family: 'Switzer';
    src: url('https://fonts.bunny.net/css?family=switzer:400,500,600,700,800') format('woff2');
    font-weight: 400 800;
    font-style: normal;
    font-display: swap;
}

/* Alternative: Use local Switzer files if available */
@font-face {
    font-family: 'Switzer';
    src: url('/fonts/Switzer-Regular.woff2') format('woff2'),
         url('/fonts/Switzer-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Switzer';
    src: url('/fonts/Switzer-Medium.woff2') format('woff2'),
         url('/fonts/Switzer-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Switzer';
    src: url('/fonts/Switzer-Semibold.woff2') format('woff2'),
         url('/fonts/Switzer-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Switzer';
    src: url('/fonts/Switzer-Bold.woff2') format('woff2'),
         url('/fonts/Switzer-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Switzer';
    src: url('/fonts/Switzer-Extrabold.woff2') format('woff2'),
         url('/fonts/Switzer-Extrabold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tanker';
    src: url('/fonts/Tanker-Regular.otf') format('opentype'),
         url('/fonts/Tanker-Regular.woff2') format('woff2'),
         url('/fonts/Tanker-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* --------------------------------------------------------------------------
   2. CSS VARIABLES (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Colors */
    --color-white: #FFFFFF;
    --color-black: #190C00;
    --color-dark-brown: #331800;
    --color-light-brown: #6D421D;
    --color-yellow: #FFDE60;
    --color-dark-yellow: #FFBF00;
    --color-red: #DE501E;
    --color-cream-light: #FFF6EA;
    --color-cream-dark: #F2D1AF;
    
    /* Shadows */
    --shadow-navbar: 0px 10px 40px 0px rgba(101, 37, 0, 0.3);
    --shadow-price-tag: 0px 5px 25px 0px rgba(101, 37, 0, 0.15);
    
    /* Spacing */
    --container-padding: 50px;
    --container-padding-mobile: 16px;
    
    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-xl: 25px;
    --radius-full: 9999px;
    
    /* Typography */
    --font-tanker: 'Tanker', Georgia, serif;
    --font-switzer: 'Switzer', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --------------------------------------------------------------------------
   3. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-switzer);
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-dark-brown);
    background-color: var(--color-dark-brown);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.8;
}

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

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY
   -------------------------------------------------------------------------- */
.text-h1 {
    font-family: var(--font-tanker);
    font-size: 72px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
}

.text-h2 {
    font-family: var(--font-tanker);
    font-size: 120px;
    font-weight: 400;
    line-height: 1;
}

.text-h3 {
    font-family: var(--font-tanker);
    font-size: clamp(32px, 5vw, 56px);
    font-style: normal;
    font-weight: 400;
    line-height: 105%;
    letter-spacing: 1.12px;
    color: var(--color-light-brown);
}

.text-h4 {
    font-family: var(--font-tanker);
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
}

.text-discount {
    font-family: var(--font-tanker);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.56px;
}

.text-14-bold {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.42px;
    text-transform: uppercase;
}

.text-14-semibold {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.28px;
}

.text-16-medium {
    font-family: var(--font-switzer);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.32px;
}

.text-18-medium {
    font-family: var(--font-switzer);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.36px;
}

.text-20-bold {
    font-family: var(--font-switzer);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.4px;
}

.text-24-semibold {
    font-family: var(--font-switzer);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.48px;
}

.text-cta {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: 0.42px;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   5. NAVIGATION BAR
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background-color: var(--color-yellow);
    box-shadow: var(--shadow-navbar);
    z-index: 1000;
    padding: 0;
}

.navbar-custom {
    padding: 0 !important;
}

.navbar .container-fluid {
    height: 100%;
    padding-left: clamp(16px, 5vw, 50px);
    padding-right: clamp(16px, 5vw, 50px);
}

.navbar .row {
    height: 100%;
    margin: 0;
}

.navbar__logo {
    height: 32px;
    display: inline-block;
}

.navbar__logo img {
    height: 100%;
    width: auto;
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
}

.navbar__link {
    font-family: var(--font-switzer);
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    color: var(--color-light-brown);
    text-decoration: none;
    position: relative;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    padding-bottom: 4px;
    transition: all 0.2s ease;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-dark-brown);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.navbar__link:hover::after {
    transform: scaleX(1);
}

.navbar__link.active {
    color: var(--color-dark-brown);
    font-weight: 800;
}

.navbar__link.active::after {
    transform: scaleX(1);
    background-color: var(--color-dark-brown);
}

.navbar__cart {
    position: relative;
    width: 24px;
    height: 24px;
    display: inline-block;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.navbar__cart-badge {
    position: absolute;
    top: -10px;
    right: -15px;
    min-width: 20px;
    height: 20px;
    background-color: var(--color-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-switzer);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-light-brown);
    letter-spacing: -0.72px;
    text-transform: uppercase;
    padding: 0 6px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.navbar__cart-badge:not(.hidden) {
    animation: badgePulse 0.3s ease;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.navbar__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    cursor: pointer;
}

.navbar__mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-light-brown);
    transition: all 0.3s ease;
}

.navbar__mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar__mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.navbar__mobile-toggle.active {
    z-index: 1001;
}

@media (max-width: 1023px) {
    .navbar {
        padding: 20px var(--container-padding-mobile);
    }
    
    .navbar__menu {
        display: none;
    }
    
    .navbar__mobile-toggle {
        display: flex;
    }
    
    .navbar__logo {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
    }
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero,
.hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 80px var(--container-padding) 80px;
    overflow: hidden;
    background-color: var(--color-dark-brown);
}

.hero__background,
.hero-section__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__background img,
.hero-section__background img {
    width: 100%;
    height: 110vh;
    object-fit: cover;
    transform: translateY(-5%);
}

.hero__background::after,
.hero-section__background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(51, 24, 0, 0.4) 0%, rgba(51, 24, 0, 0.6) 100%);
    z-index: 1;
}

.hero__content,
.hero-section__content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 700px;
}

.hero__text,
.hero-section__text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero__subtitle,
.hero-section__subtitle {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    color: var(--color-white);
}

.hero__title,
.hero-section__title {
    font-family: var(--font-tanker);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-white);
    max-width: 100%;
}

.hero__cta,
.hero-section__cta {
    align-self: flex-start;
}

.hero__socials,
.hero-section__socials {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 16px;
    align-items: center;
}

@media (max-width: 1023px) {
    .hero,
    .hero-section {
        aspect-ratio: auto;
        min-height: 100vh;
        padding: 120px var(--container-padding-mobile) 60px;
        flex-direction: column;
        justify-content: flex-end;
        gap: 40px;
    }
    
    .hero__title,
    .hero-section__title {
        font-size: 48px;
    }
    
    .hero__socials,
    .hero-section__socials {
        align-self: flex-start;
    }
}

@media (max-width: 767px) {
    .hero,
    .hero-section {
        padding: 320px 16px 80px;
        min-height: auto;
    }
    
    .hero__title,
    .hero-section__title {
        font-size: 64px;
        line-height: 1.05;
        letter-spacing: 1.28px;
    }
    
    .hero__subtitle,
    .hero-section__subtitle {
        font-size: 14px;
    }
    
    .hero__cta,
    .hero-section__cta,
    .btn {
        height: 56px;
        font-size: 16px;
        letter-spacing: 0.48px;
        width: 100%;
    }
    
    .hero__socials,
    .hero-section__socials {
        align-self: flex-start;
    }
}

/* --------------------------------------------------------------------------
   7. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 10px 40px;
    border-radius: var(--radius-xl);
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--color-yellow);
    color: var(--color-light-brown);
}

.btn--primary:hover {
    background-color: var(--color-dark-yellow);
    opacity: 1;
}

.btn--secondary {
    background-color: var(--color-dark-brown);
    color: var(--color-yellow);
}

.btn--secondary:hover {
    background-color: var(--color-black);
    opacity: 1;
}

.btn--outline {
    background-color: transparent;
    color: var(--color-light-brown);
    border: 2px solid var(--color-light-brown);
}

.btn--full {
    width: 100%;
}

.btn__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-btn {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.social-btn__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.social-btn__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-btn__icon {
    position: relative;
    z-index: 1;
    width: 24px;
    height: 24px;
}

.arrow-btn {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
    background: transparent;
    border: none;
    padding: 0;
}

.arrow-btn__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.arrow-btn__bg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.arrow-btn__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-btn__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.arrow-btn__icon--left {
    transform: translate(-50%, -50%) rotate(90deg) scaleY(-1);
}

.arrow-btn__icon--right {
    transform: translate(-50%, -50%) rotate(90deg);
}

.arrow-btn:hover {
    transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   8. SECTIONS
   -------------------------------------------------------------------------- */
.section {
    position: relative;
    width: 100%;
    padding: clamp(60px, 10vw, 120px) var(--container-padding);
    overflow: visible;
}

.section--white {
    background-color: var(--color-white);
    overflow: visible;
}

.section--cream {
    background-color: var(--color-cream-light);
}

.section--yellow {
    background-color: var(--color-yellow);
}

.section--red {
    background-color: var(--color-red);
}

.section--dark {
    background-color: var(--color-dark-brown);
}

.section--black {
    background-color: var(--color-black);
}

.section__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 80px;
}

.section__title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section__title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.section__title h2,
.text-h3 {
    font-family: 'Tanker', var(--font-tanker), Georgia, serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 105%; /* 58.8px */
    letter-spacing: 1.12px;
    color: #6D421D;
    margin: 0;
}

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

.section__title-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section__subtitle {
    font-family: var(--font-switzer);
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    opacity: 0.65;
    max-width: 100%;
}

@media (min-width: 768px) {
    .section__subtitle {
    max-width: 600px;
    }
}

@media (max-width: 1023px) {
    .section {
        padding: 80px var(--container-padding-mobile);
    }
    
    .section__header {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 48px;
    }
    
    .section__title h2,
    .text-h3 {
        font-size: 48px;
        line-height: 105%;
        letter-spacing: 0.96px;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 60px var(--container-padding-mobile);
    }
    
    .section__title h2,
    .text-h3 {
        font-size: 40px;
        line-height: 105%;
        letter-spacing: 0.8px;
    }
}

/* --------------------------------------------------------------------------
   9. WAVE SEPARATORS
   -------------------------------------------------------------------------- */
.wave-separator {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 48px;
    top: -35px;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
    display: block;
}

.wave-separator--bottom {
    top: auto;
    bottom: -35px;
    overflow: visible;
}

.section--dark {
    overflow: visible;
    position: relative;
}

.wave-separator svg {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.wave-separator__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* White wave separator (for white sections) */
.wave-separator--white svg {
    fill: #FFFFFF;
}

/* Red wave separator (for red sections) */
.wave-separator--red svg {
    fill: #DE501E;
}

/* Dark wave separator (for dark sections) */
.wave-separator--dark svg {
    fill: #331800;
}

/* Cream wave separator (for cream sections) */
.wave-separator--cream svg {
    fill: #FFF6EA;
}

/* Yellow wave separator (for yellow sections) */
.wave-separator--yellow svg {
    fill: #FFDE60;
}

@media (max-width: 1023px) {
    .wave-separator {
        height: 36px;
        top: -35px;
    }
    
    .wave-separator--bottom {
        bottom: -35px;
    }
}

@media (max-width: 767px) {
    .wave-separator {
        height: 23px;
        top: -22px;
    }
    
    .wave-separator--bottom {
        bottom: -22px;
    }
}

/* --------------------------------------------------------------------------
   10. CATEGORY FILTERS
   -------------------------------------------------------------------------- */
.category-filters {
    display: flex;
    align-items: center;
    gap: 40px;
}

.category-filter {
    font-family: var(--font-tanker);
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    color: var(--color-red);
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.2s ease;
    position: relative;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    height: 44px;
    letter-spacing: 0;
    font-style: normal;
    text-decoration: none;
}

.category-filter__text {
    line-height: 1;
    font-family: var(--font-tanker);
    font-weight: 400;
}

.category-filter::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-image: url('../images/icons/category-filter-underline.svg');
    background-repeat: repeat-x;
    background-size: auto 4px;
    background-position: left bottom;
    transform: scaleX(0);
    transition: transform 0.2s ease;
    transform-origin: left;
    opacity: 1;
}

.category-filter:hover,
.category-filter.active {
    opacity: 1;
}

.category-filter.active::after {
    transform: scaleX(1);
}

@media (max-width: 767px) {
    .category-filters {
        gap: 24px;
        flex-wrap: wrap;
    }
    
    .category-filter {
        font-size: 32px;
        height: 32px;
    }
}

/* --------------------------------------------------------------------------
   11. PRODUCT CARDS
   -------------------------------------------------------------------------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    overflow: visible;
    padding: 20px 0;
}

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

@media (max-width: 767px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0;
    }
    
    .section--white {
        padding: 40px 16px 56px;
    }
    
    .section__header {
        flex-direction: column;
        gap: 64px;
        margin-bottom: 0;
    }
    
    .section__title-wrapper {
        gap: 24px;
    }
    
    .section__title h2 {
        font-size: 40px;
        line-height: 1;
    }
    
    .section__subtitle {
        font-size: 16px;
        letter-spacing: 0.48px;
        opacity: 0.65;
    }
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: visible;
}

.product-card__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-xl);
    overflow: visible;
}

.product-card__image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.product-card__image-overlay {
    display: none;
}

.product-card__link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.product-card__link:hover {
    text-decoration: none;
    color: inherit;
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card__image {
    transform: scale(1.05);
}

.product-card__discount {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background-color: var(--color-yellow);
    border-radius: 50%;
    border: 8px solid var(--color-white);
    transform: rotate(5deg);
    overflow: visible;
}

.product-card__discount-bg {
    position: absolute;
    inset: -10.42% -10.43%;
    z-index: 0;
    border-radius: 50%;
    overflow: hidden;
}

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

.product-card__discount-text {
    position: relative;
    z-index: 1;
    font-family: var(--font-tanker);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.56px;
    color: var(--color-light-brown);
    text-align: center;
}

.product-card__info {
    border: 1px solid rgba(109, 66, 29, 0.07);
    border-radius: var(--radius-xl);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1;
    min-height: 180px;
}

.product-card__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-card__title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.product-card__name {
    font-family: var(--font-switzer);
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.4px;
    color: var(--color-light-brown);
    flex: 1;
}

.product-card__price {
    font-family: var(--font-switzer);
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.4px;
    color: var(--color-light-brown);
    text-align: right;
    white-space: nowrap;
}

.product-card__description {
    font-family: var(--font-switzer);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.36px;
    color: var(--color-light-brown);
    opacity: 0.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__meta {
    font-family: var(--font-switzer);
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.35;
    letter-spacing: -0.64px;
    color: var(--color-light-brown);
    opacity: 0.4;
}

/* --------------------------------------------------------------------------
   12. PRICE TAG (Add to Cart)
   -------------------------------------------------------------------------- */
.price-tag {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-price-tag);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 6px 6px 6px 16px;
    overflow: hidden;
}

.price-tag__quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.price-tag__btn {
    width: 32px;
    height: 32px;
    background-color: rgba(51, 24, 0, 0.05);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease;
    font-size: 16px;
    color: var(--color-dark-brown);
}

.price-tag__btn:hover {
    background-color: rgba(51, 24, 0, 0.1);
}

.price-tag__value {
    font-family: var(--font-switzer);
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.4px;
    color: var(--color-light-brown);
    min-width: 34px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 34px;
    text-align: center;
}

.price-tag__add {
    width: 56px;
    height: 56px;
    background-color: var(--color-dark-brown);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease;
}

.price-tag__add:hover {
    background-color: var(--color-black);
}

.price-tag__add svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

/* --------------------------------------------------------------------------
   13. INFINITY SLIDER
   -------------------------------------------------------------------------- */
.infinity-slider {
    background-color: var(--color-yellow);
    padding: 24px 0;
    overflow: hidden;
}

.infinity-slider__track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.infinity-slider__item {
    display: flex;
    align-items: center;
    gap: 80px;
    white-space: nowrap;
}

.infinity-slider__text {
    font-family: var(--font-tanker);
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 400;
    line-height: 1;
    color: var(--color-light-brown);
}

.infinity-slider__icon {
    height: auto;
    width: auto;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
}

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

@media (max-width: 767px) {
    .infinity-slider {
        padding: 17.286px 0;
    }
    
    .infinity-slider__text {
        font-size: 86.429px;
    }
    
    .infinity-slider__icon {
        width: auto;
        height: auto;
        max-height: 45.998px;
    }
    
    .infinity-slider__track {
        gap: 57.619px;
    }
    
    .infinity-slider__item {
        gap: 57.619px;
    }
}

/* --------------------------------------------------------------------------
   14. IMAGE BANNER
   -------------------------------------------------------------------------- */
.image-banner {
    width: 100%;
    aspect-ratio: 1440 / 600;
    position: relative;
    overflow: hidden;
}

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

@media (max-width: 767px) {
    .image-banner {
        height: 280px;
        aspect-ratio: auto;
    }
}

/* --------------------------------------------------------------------------
   15. TESTIMONIALS
   -------------------------------------------------------------------------- */
.testimonials-slider {
    display: flex;
    gap: 80px;
    padding-left: 120px;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-right: 32px;
    overflow-x: hidden;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    position: relative;
    scroll-behavior: smooth;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card-wrapper {
    flex: 0 0 470px;
    position: relative;
    scroll-snap-align: start;
    width: 100%;
    max-width: 480px;
    min-height: 400px;
}

/* Wavy background layer with Gooey effect */
.testimonial-wavy-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    /* Aplikujeme opravený filter */
    filter: url('#goo-no-shadow');

    /* Tieto vlastnosti pomáhajú prehliadaču správne vykresliť filter */
    transform: translate3d(0,0,0);
    -webkit-font-smoothing: antialiased;
}

.testimonial-wavy-shape {
    background-color: var(--color-white);
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 40px;
}

/* Circles around the perimeter - creates wavy border */
.testimonial-wavy-shape::before {
    content: "";
    position: absolute;
    top: -20px;
    bottom: -20px;
    left: -20px;
    right: -20px;
    background-image: radial-gradient(circle, var(--color-white) 68%, transparent 69%);
    background-size: 40px 40px;
    background-repeat: round;
    border-radius: 40px;
}

/* Fill the center */
.testimonial-wavy-shape::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    border-radius: 40px;
}

/* Content layer */
.testimonial-content-layer {
    position: relative;
    z-index: 1;
    padding: 50px 40px;
}

.testimonial-stars {
    color: var(--color-yellow);
    font-size: 28px;
    letter-spacing: 5px;
    margin-bottom: 25px;
}

.testimonial-review-content {
    position: relative;
    margin-bottom: 40px;
}

.testimonial-quote-mark {
    font-family: serif;
    color: var(--color-cream-dark);
    font-size: 80px;
    line-height: 0;
    position: absolute;
}

.testimonial-quote-mark img {
    width: 32px;
    height: 26px;
    object-fit: contain;
}

.testimonial-quote-mark--left {
    top: 0;
    left: -15px;
    display: flex;
    align-items: flex-start;
}

.testimonial-review-text {
    color: var(--color-light-brown);
    font-family: var(--font-switzer);
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
    margin: 0;
    text-indent: 40px;
    padding-top: 0;
}

.testimonial-review-text::after {
    content: "";
    display: inline-block;
    width: 32px;
    height: 26px;
    background-image: url('https://www.figma.com/api/mcp/asset/18974033-0f78-47b1-8b5f-7b61a08e7606');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    top: 30px;
    margin-left: 10px;
    vertical-align: bottom;
    line-height: 0;
}

.testimonial-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author-info {
    text-align: right;
}

.testimonial-author-name {
    display: block;
    color: var(--color-light-brown);
    font-family: var(--font-switzer);
    font-weight: 800;
    font-size: 18px;
}

.testimonial-date {
    display: block;
    color: var(--color-light-brown);
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 600;
    margin-top: 4px;
    opacity: 0.6;
}

.testimonial-card__images {
    display: flex;
    padding-right: 24px;
    position: relative;
}

.testimonial-card__image {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    border: 6px solid var(--color-white);
    overflow: hidden;
    margin-right: -24px;
    position: relative;
    box-shadow: 0px 5px 25px 0px rgba(101, 37, 0, 0.15);
}

.testimonial-card__image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.testimonial-card__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__image-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--color-cream-dark);
    mix-blend-mode: color;
    pointer-events: none;
}

.testimonial-card__author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-card__author-name {
    font-family: var(--font-switzer);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.4px;
    color: var(--color-light-brown);
}

.testimonial-card__author-date {
    font-family: var(--font-switzer);
    font-size: 20px;
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--color-light-brown);
    opacity: 0.6;
}

@media (max-width: 767px) {
    .section--red {
        padding: 40px 16px 100px;
    }
    
    .section--red .section__header {
        gap: 16px;
        margin-bottom: 0;
    }
    
    .section--red .section__title h2 {
        font-size: 40px;
        line-height: 1;
    }
    
    .section--red .section__subtitle {
        font-size: 16px;
        letter-spacing: 0.48px;
        opacity: 0.6;
    }
    
    .testimonials-slider {
        gap: 52px;
        padding-left: 60px;
    }
    
    .testimonial-card-wrapper {
        flex: 0 0 309px;
        max-width: 309px;
    }
    
    .testimonial-content-layer {
        padding: 32px 24px;
    }
    
    .testimonial-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .testimonial-author-info {
        text-align: left;
    }
    
    .testimonial-wavy-shape::before {
        top: -15px;
        bottom: -12px;
        left: -12px;
        right: -12px;
        background-size: 28px 28px;
    }
}

@media (min-width: 768px) {
    
    .testimonial-card__stars {
        height: 32px;
    }
    
    .testimonial-card__text {
        font-size: 18px;
        letter-spacing: -0.36px;
    }
    
    .testimonial-card__quote-mark {
        width: 16px;
        height: 14px;
        font-size: 30px;
    }
    
    .testimonial-card__image {
        width: 64px;
        height: 64px;
    }
    
    .testimonial-card__author-name {
        font-size: 20px;
    }
    
    .testimonial-card__author-date {
        font-size: 20px;
    }
}

/* --------------------------------------------------------------------------
   16. GALLERY GRID
   -------------------------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.gallery-grid__main {
    grid-row: span 2;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.gallery-grid__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-grid__secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
}

.gallery-grid__item {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.gallery-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-grid__item:hover img {
    transform: scale(1.05);
}

.gallery-grid__cta {
    background-color: var(--color-yellow);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
}

.gallery-grid__cta:hover {
    background-color: var(--color-dark-yellow);
    opacity: 1;
}

.gallery-grid__cta-text {
    font-family: var(--font-tanker);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    line-height: 1;
    color: var(--color-dark-brown);
    text-align: center;
}

.gallery-grid__cta-icon {
    width: 40px;
    height: 40px;
}

@media (max-width: 1023px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid__main {
        grid-row: auto;
        aspect-ratio: 1;
    }
    
    .gallery-grid__secondary {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .section--dark {
        padding: 40px 16px 56px;
    }
    
    .section--dark .section__header {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 0;
    }
    
    .section--dark .section__title h2 {
        font-size: 40px;
        line-height: 1;
    }
    
    .section--dark .section__subtitle {
        font-size: 16px;
        letter-spacing: 0.48px;
        opacity: 0.6;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .gallery-grid__main {
        grid-row: span 2;
    }
    
    .gallery-grid__secondary {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 8px;
    }
    
    .gallery-grid__item {
        aspect-ratio: 1;
    }
    
    .gallery-grid__cta {
        aspect-ratio: 1;
        padding: 10px 24px;
    }
    
    .gallery-grid__cta-text {
        font-size: 40px;
    }
    
    .gallery-grid__cta-icon {
        width: 40px;
        height: 40px;
    }
}

/* --------------------------------------------------------------------------
   17. CONTACT FORM
   -------------------------------------------------------------------------- */
.contact-section {
    position: relative;
    overflow: visible;
    padding: 80px 50px 120px 50px;
    background-color: var(--color-cream-light);
}

/* Decorative waves - exact Figma positioning */
.contact-section__wave {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.contact-section__wave-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.contact-section__wave-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Top wave */
.contact-section__wave--top {
    top: 86.29px;
    left: 0;
    right: 0;
    bottom: -0.29px;
}

.contact-section__wave--top .contact-section__wave-inner {
    top: -2.52%;
    right: -2.22%;
    bottom: -2.9%;
    left: -1.38%;
}

/* Right wave */
.contact-section__wave--right {
    top: 437.29px;
    right: 0;
    bottom: -0.29px;
    left: -131px;
}

.contact-section__wave--right .contact-section__wave-inner {
    top: -9.44%;
    right: -2.04%;
    bottom: -5.26%;
    left: -1.97%;
}

/* Bottom wave */
.contact-section__wave--bottom {
    top: 802.29px;
    left: 0;
    right: 0;
    bottom: -0.29px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-section__wave--bottom .contact-section__wave-inner {
    width: 1440px;
    height: 395px;
    position: relative;
    transform: rotate(180deg) scaleY(-1);
    top: -6.66%;
    right: -2.04%;
    bottom: -8.15%;
    left: -1.03%;
}

/* Zilina background image - exact Figma positioning */
.contact-section__background-image {
    position: absolute;
    bottom: -0.29px;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.contact-section__background-image-inner {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.contact-section__zilina-img {
    position: absolute;
    height: 100%;
    left: -3.13%;
    bottom: 0;
    width: 100%;
    max-width: none;
    object-fit: cover;
    object-position: right center;
}

/* Container and content - exact Figma layout */
.contact-section__container {
    position: relative;
    z-index: 1;
    width: 1340px;
    margin: 0;
    margin-bottom: -48px;
}

.contact-section__content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: flex-start;
}

@media (max-width: 1440px) {
    .contact-section__background-image {

        min-width: 800px;
        height: auto;
        min-height: 800px;
    }
}

@media (max-width: 1023px) {
    .contact-section {
        padding: 80px 30px 160px 30px;
    }
    
    .contact-section__background-image {
        min-width: 600px;
    }
    
    .contact-section__content {
        gap: 60px;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 60px 20px 120px 20px;
    }
    
    .contact-section__background-image {
        width: 40%;
        min-width: 400px;
    }
    
    .contact-section__content {
        gap: 40px;
    }
}

.contact-section__background {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60%;
    height: auto;
    opacity: 0.15;
    pointer-events: none;
}

.contact-form {
    background-color: var(--color-white);
    border-radius: 25px;
    box-shadow: 0px 5px 25px 0px rgba(101, 37, 0, 0.15);
    padding: clamp(24px, 3vw, 32px);
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 3vw, 30px);
    width: 100%;
    position: relative;
    z-index: 1;
}

.contact-form__intro {
    font-family: var(--font-switzer);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.48px;
    color: var(--color-light-brown);
}

.contact-form__fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --------------------------------------------------------------------------
   18. FORM INPUTS
   -------------------------------------------------------------------------- */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.28px;
    color: var(--color-light-brown);
    padding-left: 8px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.28px;
    color: var(--color-light-brown);
    padding-left: 8px;
}

.form-input-wrapper {
    position: relative;
    width: 100%;
}

.form-input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    opacity: 0.4;
    pointer-events: none;
}

.form-input-icon img {
    width: 100%;
    height: 100%;
}

.form-input {
    width: 100%;
    min-height: 48px;
    height: auto;
    background-color: var(--color-white);
    border: 2px solid rgba(51, 24, 0, 0.1);
    border-radius: 10px;
    padding: clamp(10px, 1.5vw, 14px) clamp(16px, 2vw, 20px);
    font-family: var(--font-switzer);
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.32px;
    color: var(--color-dark-brown);
    transition: border-color 0.2s ease;
    touch-action: manipulation;
}

.form-input-wrapper .form-input {
    padding-right: 50px;
}

.form-input::placeholder {
    color: rgba(51, 24, 0, 0.5);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-light-brown);
}

.form-input--textarea {
    height: 240px;
    min-height: 240px;
    resize: vertical;
    padding: 20px;
}

.form-input--error {
    border-color: var(--color-red);
}

.form-error {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.28px;
    color: var(--color-red);
    padding-left: 8px;
}

/* --------------------------------------------------------------------------
   19. NEWSLETTER SECTION
   -------------------------------------------------------------------------- */
/* Newsletter Section - Fully Responsive */
.newsletter-section__badges {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-wrap: nowrap;
    min-width: 0;
    gap: 0;
}

.newsletter-section__badge {
    width: clamp(70px, 8vw, 96px);
    height: clamp(70px, 8vw, 96px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: clamp(-18px, -2vw, -24px);
    flex-shrink: 0;
    transition: transform 0.3s ease, z-index 0.3s ease;
}

.newsletter-section__badge:last-child {
    margin-right: 0;
}

.newsletter-section__badge:hover {
    transform: scale(1.1) rotate(0deg) !important;
    z-index: 10;
}

.newsletter-section__badge-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    width: clamp(90px, 10vw, 120px);
    height: clamp(90px, 10vw, 120px);
    transition: transform 0.3s ease;
}

.newsletter-section__badge:hover .newsletter-section__badge-bg {
    transform: translate(-50%, -50%) scale(1.05);
}

.newsletter-section__badge-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.newsletter-section__badge-text {
    position: relative;
    z-index: 1;
    font-family: var(--font-tanker);
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.56px;
    color: var(--color-light-brown);
    transition: font-size 0.3s ease;
}

.newsletter-section__badge:hover .newsletter-section__badge-text {
    font-size: clamp(20px, 2.8vw, 30px);
}

.newsletter-section__form {
    display: flex;
    align-items: stretch;
    gap: 0;
    width: 100%;
    position: relative;
}

.newsletter-section__input {
    flex: 1;
    min-width: 0;
    width: 100%;
    height: 56px;
    padding: 16px 24px;
    padding-right: 50px;
    border-radius: 15px;
    border: 2px solid transparent;
    background-color: var(--color-white);
    font-family: var(--font-switzer);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-dark-brown);
    transition: all 0.2s ease;
    position: relative;
    z-index: 0;
    margin-right: -40px;
}

.newsletter-section__input:focus {
    outline: none;
    border-color: var(--color-dark-brown);
    z-index: 2;
}

.newsletter-section__input::placeholder {
    color: rgba(51, 24, 0, 0.5);
}

.newsletter-section__btn {
    flex-shrink: 0;
    white-space: nowrap;
    height: 56px;
    padding: 16px 32px;
    position: relative;
    z-index: 1;
}

.btn__icon-img {
    width: 24px;
    height: 24px;
    display: block;
}

.btn--dark {
    background-color: var(--color-dark-brown);
    color: var(--color-yellow);
}

.btn--dark:hover {
    background-color: var(--color-black);
    opacity: 1;
}

@media (max-width: 1023px) {
    /* Newsletter responsive adjustments */
    .newsletter-section__badges {
        justify-content: flex-start;
    }
    
    .newsletter-section__content {
        flex: 1;
        width: 100%;
    }
    
    .newsletter-section__badges {
        order: 0;
        padding-right: 0;
        justify-content: center;
        width: 100%;
    }
    
    .newsletter-section__form-wrapper {
        width: 100%;
        justify-content: flex-start;
    }
    
    .newsletter-section__form {
        flex-direction: row;
        width: 100%;
        max-width: 540px;
    }
    
    .newsletter-section__input {
        flex: 1;
        min-width: 200px;
        margin-right: -40px;
        padding-right: 50px;
    }
    
    .newsletter-section__btn {
        min-width: 220px;
        flex-shrink: 0;
    }
}

@media (max-width: 767px) {
    .section--cream {
        padding: 80px 16px;
    }
    
    .section--cream .section__title-wrapper {
        margin-bottom: 24px;
        gap: 24px;
    }
    
    .section--cream .section__title h2 {
        font-size: 40px;
        line-height: 1;
    }
    
    .section--cream .section__subtitle {
        font-size: 16px;
        letter-spacing: 0.48px;
        opacity: 0.6;
    }
    
    .contact-form {
        width: 100%;
        max-width: 100%;
        padding: 24px;
        gap: 32px;
    }
    
    .contact-form__intro {
        font-size: 20px;
        letter-spacing: -0.4px;
    }
    
    .section--yellow {
        padding: 40px 16px 80px;
    }
    
    .section--yellow .section__title-wrapper {
        max-width: 100%;
        gap: 24px;
    }
    
    .section--yellow .section__title h2 {
        font-size: 40px;
        line-height: 1;
    }
    
    .section--yellow .section__subtitle {
        font-size: 16px;
        letter-spacing: 0.48px;
        opacity: 0.6;
    }
    
    .newsletter-section__badge {
        width: clamp(68px, 15vw, 72px);
        height: clamp(68px, 15vw, 72px);
        margin-right: -16px;
    }
    
    .newsletter-section__badge-bg {
        width: clamp(84px, 18vw, 90px);
        height: clamp(84px, 18vw, 90px);
    }
    
    .newsletter-section__badge-text {
        font-size: clamp(18px, 5vw, 22px);
        align-items: flex-start;
    }
    
    .newsletter-section__content {
        width: 100%;
    }
    
    .newsletter-section__badges {
        order: 0;
        padding-right: 0;
        justify-content: center;
        width: 100%;
    }
    
    .newsletter-section__form-wrapper {
        width: 100%;
    }
    
    .newsletter-section__form {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .newsletter-section__input {
        width: 100%;
        height: 54px;
        font-size: 15px;
        padding: 14px 20px;
    }
    
    .newsletter-section__btn {
        width: 100%;
        height: 54px;
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* --------------------------------------------------------------------------
   20. FOOTER
   -------------------------------------------------------------------------- */
.footer {
    background-color: var(--color-black);
    padding: 120px var(--container-padding) 50px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative;
}

.footer__main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.footer__description {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    color: var(--color-cream-light);
    opacity: 0.6;
    max-width: 440px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__link {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    color: var(--color-cream-light);
    transition: opacity 0.2s ease;
}

.footer__link:hover {
    opacity: 0.8;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer__contact-icon {
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.footer__contact-text {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.28px;
    color: var(--color-cream-light);
}

.footer__socials {
    display: flex;
    gap: 16px;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer__logo {
    width: 100%;
}

.footer__logo img {
    width: 100%;
    height: auto;
}

.footer__legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.5;
}

.footer__copyright {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    color: var(--color-cream-light);
    opacity: 0.6;
}

.footer__legal-links {
    display: flex;
    gap: 40px;
}

.footer__legal-link {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    color: var(--color-cream-light);
    opacity: 0.6;
    text-decoration: underline;
}

@media (max-width: 1023px) {
    .footer {
        padding: 80px var(--container-padding-mobile) 40px;
    }
    
    .footer__main {
        flex-direction: column;
        gap: 48px;
    }
    
    .footer__legal {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer__legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }
}

/* --------------------------------------------------------------------------
   21. CART PAGE
   -------------------------------------------------------------------------- */
.cart-header {
    background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-dark-yellow) 100%);
    padding: 120px var(--container-padding) 60px;
    text-align: center;
}

.cart-header__title {
    font-family: var(--font-tanker);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.05;
    color: var(--color-light-brown);
}

.shipping-progress {
    background-color: var(--color-cream-light);
    padding: 24px;
    border-radius: var(--radius-xl);
    margin-bottom: 40px;
}

.shipping-progress__text {
    font-family: var(--font-switzer);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-light-brown);
    margin-bottom: 12px;
    text-align: center;
}

.shipping-progress__bar {
    height: 8px;
    background-color: rgba(109, 66, 29, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.shipping-progress__fill {
    height: 100%;
    background-color: var(--color-yellow);
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

/* Old cart-items styles removed - using new styles below */

.cart-summary {
    background-color: var(--color-cream-light);
    padding: 32px;
    border-radius: var(--radius-xl);
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(109, 66, 29, 0.1);
}

.cart-summary__row:last-child {
    border-bottom: none;
}

.cart-summary__label {
    font-family: var(--font-switzer);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-light-brown);
}

.cart-summary__value {
    font-family: var(--font-switzer);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-light-brown);
}

.cart-summary__row--total .cart-summary__label,
.cart-summary__row--total .cart-summary__value {
    font-size: 24px;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 40px;
    width: 100%;
}

/* Empty Cart State */
.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    width: 100%;
    padding: 0;
}

.empty-cart .cart-progress {
    width: 100%;
    max-width: 600px;
    margin-bottom: 0;
}

.empty-cart__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.empty-cart__icon-wrapper {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-cart__cart-icon {
    width: 100%;
    height: 100%;
    display: block;
}

.empty-cart__text {
    font-family: var(--font-switzer);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.32px;
    color: var(--color-light-brown);
    opacity: 0.25;
    text-align: center;
    margin: 0;
}

.empty-cart__summary {
    width: 100%;
    margin-bottom: 0;
}

.empty-cart .cart-summary {
    background-color: var(--color-cream-light);
    border-radius: 25px;
    padding: 32px 40px;
    width: 100%;
}

.empty-cart .cart-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.empty-cart .cart-summary__total-label {
    font-family: var(--font-switzer);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.48px;
    color: var(--color-light-brown);
}

.empty-cart .cart-summary__total-price {
    font-family: var(--font-tanker);
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: var(--color-light-brown);
    text-transform: uppercase;
}

.empty-cart .cart-actions {
    width: 100%;
    margin-top: 0;
}

@media (max-width: 767px) {
    .cart-header {
        padding: 100px var(--container-padding-mobile) 40px;
    }
    
    .cart-header__title {
        font-size: 40px;
    }
    
    /* Old cart-item responsive styles removed - Bootstrap handles this */
    
    .cart-actions {
        flex-direction: column;
    }
    
    .empty-cart {
        gap: 60px;
    }
    
    .empty-cart__icon-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .empty-cart__text {
        font-size: 14px;
    }
    
    .empty-cart .cart-summary {
        padding: 24px 32px;
    }
    
    .empty-cart .cart-summary__total-label {
        font-size: 18px;
    }
    
    .empty-cart .cart-summary__total-price {
        font-size: 24px;
    }
}

/* --------------------------------------------------------------------------
   22. ERROR PAGES (404, 500)
   -------------------------------------------------------------------------- */
.error-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.error-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 120px;
}

.error-content .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    max-width: 1120px;
}

.error-page__code-bg {
    font-family: var(--font-tanker);
    font-size: 200px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: var(--color-light-brown);
    opacity: 0.1;
    text-align: center;
    user-select: none;
    pointer-events: none;
}

.error-page__message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    width: 100%;
}

.error-page__title {
    font-family: var(--font-tanker);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 1.12px;
    color: var(--color-light-brown);
    margin: 0;
}

.error-page__subtitle {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.28px;
    color: var(--color-light-brown);
    opacity: 0.65;
    margin: 0;
    max-width: 600px;
}

.error-page__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.error-page__actions .btn {
    min-width: 200px;
}

@media (max-width: 991px) {
    .error-content {
        padding: 60px 0 100px;
    }
    
    .error-content .container {
        gap: 60px;
    }
    
    .error-page__code-bg {
        font-size: 150px;
    }
    
    .error-page__title {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .error-content {
        padding: 40px 0 80px;
    }
    
    .error-content .container {
        gap: 40px;
    }
    
    .error-page__code-bg {
        font-size: 120px;
    }
    
    .error-page__title {
        font-size: 36px;
    }
    
    .error-page__subtitle {
        font-size: 13px;
    }
    
    .error-page__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .error-page__actions .btn {
        width: 100%;
        min-width: auto;
    }
}

/* --------------------------------------------------------------------------
   23. CHECKOUT PAGE
   -------------------------------------------------------------------------- */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    padding: 40px 0;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.checkout-form__section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-form__section-title {
    font-family: var(--font-switzer);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.4px;
    color: var(--color-light-brown);
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(109, 66, 29, 0.1);
}

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

.checkout-sidebar {
    position: sticky;
    top: 92px;
    height: fit-content;
}

.checkout-summary {
    background-color: var(--color-cream-light);
    padding: 32px;
    border-radius: var(--radius-xl);
}

.checkout-summary__title {
    font-family: var(--font-switzer);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.48px;
    color: var(--color-light-brown);
    margin-bottom: 24px;
}

.checkout-summary__items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(109, 66, 29, 0.1);
}

.checkout-summary__item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.checkout-summary__item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

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

.checkout-summary__item-info {
    flex: 1;
}

.checkout-summary__item-name {
    font-family: var(--font-switzer);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-light-brown);
}

.checkout-summary__item-qty {
    font-family: var(--font-switzer);
    font-size: 14px;
    color: var(--color-light-brown);
    opacity: 0.6;
}

.checkout-summary__item-price {
    font-family: var(--font-switzer);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-light-brown);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(51, 24, 0, 0.2);
    border-radius: var(--radius-sm);
    appearance: none;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.2s ease;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark-brown);
    font-size: 14px;
    font-weight: bold;
}

.checkbox-group__label {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-light-brown);
}

.checkbox-group__label a {
    text-decoration: underline;
    color: var(--color-red);
}

@media (max-width: 1023px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    
    .checkout-sidebar {
        position: static;
    }
    
    .checkout-form__row {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   23. SUCCESS PAGE
   -------------------------------------------------------------------------- */
.success-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px var(--container-padding);
    text-align: center;
    background-color: var(--color-cream-light);
}

.success-page__icon {
    width: 120px;
    height: 120px;
    background-color: var(--color-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    font-size: 60px;
}

.success-page__title {
    font-family: var(--font-tanker);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.05;
    color: var(--color-light-brown);
    margin-bottom: 16px;
}

.success-page__message {
    font-family: var(--font-switzer);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-light-brown);
    opacity: 0.7;
    margin-bottom: 40px;
    max-width: 500px;
}

.success-page__info {
    background-color: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-xl);
    margin-bottom: 40px;
    text-align: left;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-price-tag);
}

/* --------------------------------------------------------------------------
   24. PRODUCT DETAIL PAGE
   -------------------------------------------------------------------------- */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 40px 0;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-gallery__main {
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

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

.product-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-price-tag);
    transition: all 0.2s ease;
    border: none;
}

.product-gallery__nav:hover {
    background-color: var(--color-yellow);
}

.product-gallery__nav--prev {
    left: 16px;
}

.product-gallery__nav--next {
    right: 16px;
}

.product-gallery__thumbnails {
    display: flex;
    gap: 16px;
}

.product-gallery__thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color 0.2s ease;
}

.product-gallery__thumbnail.active,
.product-gallery__thumbnail:hover {
    border-color: var(--color-yellow);
}

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

.product-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product-info__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-light-brown);
    opacity: 0.6;
}

.product-info__breadcrumb a {
    text-decoration: underline;
}

.product-info__title {
    font-family: var(--font-tanker);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.05;
    color: var(--color-light-brown);
}

.product-info__description {
    font-family: var(--font-switzer);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-light-brown);
    opacity: 0.7;
}

.product-info__meta {
    display: flex;
    gap: 24px;
}

.product-info__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-switzer);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-light-brown);
    opacity: 0.6;
}

.product-info__pricing {
    background-color: var(--color-cream-light);
    padding: 24px;
    border-radius: var(--radius-xl);
}

.product-info__price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.product-info__price {
    font-family: var(--font-tanker);
    font-size: 40px;
    font-weight: 400;
    color: var(--color-light-brown);
}

.product-info__price-old {
    font-family: var(--font-switzer);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-light-brown);
    opacity: 0.4;
    text-decoration: line-through;
    margin-left: 12px;
}

.product-info__add-to-cart {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pricing-tiers {
    margin-top: 32px;
}

.pricing-tiers__title {
    font-family: var(--font-switzer);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-light-brown);
    margin-bottom: 16px;
}

.pricing-tiers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.pricing-tier {
    background-color: var(--color-white);
    padding: 16px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.pricing-tier.active {
    border-color: var(--color-yellow);
}

.pricing-tier__range {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-light-brown);
    opacity: 0.6;
    margin-bottom: 8px;
}

.pricing-tier__price {
    font-family: var(--font-switzer);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-light-brown);
}

@media (max-width: 1023px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-info__title {
        font-size: 40px;
    }
    
    .pricing-tiers__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .product-info__title {
        font-size: 32px;
    }
    
    .product-info__price {
        font-size: 32px;
    }
}

/* --------------------------------------------------------------------------
   25. NOTIFICATIONS
   -------------------------------------------------------------------------- */
.notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    animation: slideIn 0.3s ease;
    box-shadow: var(--shadow-navbar);
}

.notification--success {
    background-color: #10B981;
    color: var(--color-white);
}

.notification--error {
    background-color: var(--color-red);
    color: var(--color-white);
}

.notification--warning {
    background-color: var(--color-yellow);
    color: var(--color-dark-brown);
}

.notification__text {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 600;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* --------------------------------------------------------------------------
   26. MOBILE MENU OVERLAY
   -------------------------------------------------------------------------- */
.mobile-menu {
    position: fixed;
    inset: 0;
    background-color: var(--color-yellow);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 100px var(--container-padding-mobile) 40px;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--color-light-brown);
}

.mobile-menu__links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu__link {
    font-family: var(--font-tanker);
    font-size: 40px;
    font-weight: 400;
    color: var(--color-light-brown);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 20px;
    opacity: 0;
    transform: translateY(-20px);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.mobile-menu.active .mobile-menu__link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu__link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu__link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-menu__link:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu__link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 4px;
    background-color: var(--color-dark-brown);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.mobile-menu__link:hover,
.mobile-menu__link.active {
    color: var(--color-dark-brown);
    font-weight: 400;
}

.mobile-menu__link.active::before {
    width: 12px;
}

.mobile-menu__footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* --------------------------------------------------------------------------
   27. PAGINATION
   -------------------------------------------------------------------------- */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination__item {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-family: var(--font-switzer);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-light-brown);
    transition: all 0.2s ease;
}

.pagination__item:hover {
    background-color: rgba(109, 66, 29, 0.1);
}

.pagination__item.active {
    background-color: var(--color-yellow);
}

.pagination__item.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* --------------------------------------------------------------------------
   28. EMPTY STATE
   -------------------------------------------------------------------------- */
.empty-state {
    text-align: center;
    padding: 80px 24px;
}

.empty-state__icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.empty-state__title {
    font-family: var(--font-tanker);
    font-size: 32px;
    font-weight: 400;
    color: var(--color-light-brown);
    margin-bottom: 12px;
}

.empty-state__text {
    font-family: var(--font-switzer);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-light-brown);
    opacity: 0.6;
    margin-bottom: 32px;
}

/* --------------------------------------------------------------------------
   29. UTILITIES
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: clamp(16px, 5vw, 50px);
    padding-right: clamp(16px, 5vw, 50px);
}

@media (max-width: 1023px) {
    .container {
        padding-left: clamp(16px, 3vw, 24px);
        padding-right: clamp(16px, 3vw, 24px);
    }
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none !important; }

.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;
}

/* Colors */
.text-white { color: var(--color-white); }
.text-brown { color: var(--color-light-brown); }
.text-dark-brown { color: var(--color-dark-brown); }
.text-yellow { color: var(--color-yellow); }
.text-red { color: var(--color-red); }
.text-cream { color: var(--color-cream-light); }

.bg-white { background-color: var(--color-white); }
.bg-cream { background-color: var(--color-cream-light); }
.bg-yellow { background-color: var(--color-yellow); }
.bg-red { background-color: var(--color-red); }
.bg-dark { background-color: var(--color-dark-brown); }
.bg-black { background-color: var(--color-black); }

/* Opacity */
.opacity-40 { opacity: 0.4; }
.opacity-60 { opacity: 0.6; }
.opacity-65 { opacity: 0.65; }

/* Spacing helpers */
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; }
.pt-navbar { padding-top: 72px; }

/* Flex helpers */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-40 { gap: 40px; }

/* Grid helpers */
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* --------------------------------------------------------------------------
   30. PRODUCT LIST PAGE
   -------------------------------------------------------------------------- */
.product-list-header {
    background-color: var(--color-yellow);
    padding: 16px var(--container-padding);
}

.product-list-header__text {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    color: var(--color-light-brown);
    text-align: center;
}

.product-list-banner {
    background-color: var(--color-dark-brown);
    padding: 24px var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-list-banner img {
    height: 40px;
    width: auto;
}

/* --------------------------------------------------------------------------
   31. GALLERY PAGE
   -------------------------------------------------------------------------- */
.gallery-header {
    background-color: var(--color-dark-brown);
    padding: 120px var(--container-padding) 60px;
    text-align: center;
}

.gallery-header__title {
    font-family: var(--font-tanker);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.05;
    color: var(--color-yellow);
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gallery-page-grid__item {
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.gallery-page-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-page-grid__item:hover img {
    transform: scale(1.05);
}

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

@media (max-width: 767px) {
    .gallery-header {
        padding: 100px var(--container-padding-mobile) 40px;
    }
    
    .gallery-header__title {
        font-size: 40px;
    }
    
    .gallery-page-grid {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   32. PRODUCT DETAIL PAGE
   -------------------------------------------------------------------------- */
.product-detail-section {
    background-color: var(--color-cream-light);
    position: relative;
    padding-top: 0;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.product-detail-section__container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    padding-bottom: 24px;
}

/* Back button */
.product-detail-section__back-btn {
    position: absolute;
    left: 50px;
    top: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2.5px);
    padding: 10px 24px;
    border-radius: 15px;
    text-decoration: none;
    z-index: 10;
    transition: background 0.2s ease;
}

.product-detail-section__back-btn:hover {
    background: rgba(255, 255, 255, 0.7);
}

.product-detail-section__back-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.product-detail-section__back-text {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    color: var(--color-light-brown);
}

/* Gallery */
.product-detail-section__gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    z-index: 1;
}

.product-detail-section__gallery::-webkit-scrollbar {
    display: none;
}

.product-detail-section__gallery-item {
    flex: 0 0 66.666%;
    width: 66.666%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.product-detail-section__gallery-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.product-detail-section__gallery-img:hover {
    transform: scale(1.02);
}

.product-detail-section__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-cream-dark);
    font-size: 80px;
}

/* Navigation arrows - positioned relative to container (fixed on desktop) */
.product-detail-section__arrow {
    position: absolute;
    top: calc(50% + 36px);
    transform: translateY(-50%);
    z-index: 100;
    background: none;
    border: none;
    padding: 18px;
    cursor: pointer;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.product-detail-section__arrow--left {
    left: 50px;
}

.product-detail-section__arrow--right {
    right: 50px;
}

/* Product Info Wrapper */
.product-detail-section__info-wrapper {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 100px);
    max-width: 1200px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Product Info Card */
.product-detail-section__info-card {
    position: relative;
    background: white;
    border-radius: 25px;
    padding: 24px 32px 24px 24px;
    box-shadow: 0px 5px 25px rgba(101, 37, 0, 0.15);
    width: 100%;
}

.product-detail-section__info-content {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.product-detail-section__info-title-row {
    display: flex;
    align-items: center;
    gap: 80px;
    flex: 1;
    min-width: 0;
}

.product-detail-section__info-controls-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.product-detail-section__name-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.product-detail-section__product-name {
    font-family: var(--font-tanker);
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    color: var(--color-light-brown);
    margin: 0;
    flex: 1;
    min-width: 0;
}

.product-detail-section__unit-price-info {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(109, 66, 29, 0.6);
}

.product-detail-section__price-box {
    border: 1px solid rgba(109, 66, 29, 0.15);
    border-radius: 10px;
    padding: 0 10px;
    height: 48px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-detail-section__price {
    font-family: var(--font-tanker);
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-light-brown);
}


.product-detail-section__quantity-wrapper {
    background: white;
    border-radius: 15px;
    padding: 6px 14px;
    box-shadow: 0px 5px 25px rgba(101, 37, 0, 0.15);
    height: 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
}

.product-detail-section__quantity-controls {
    display: flex;
    align-items: center;
}

.product-detail-section__add-btn {
    height: 60px;
    padding: 10px 40px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #331800;
    color: #FFDE60;
    border: none;
    cursor: pointer;
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
    flex: 1 0 0;
    min-width: 0;
}

.product-detail-section__add-btn:hover {
    opacity: 0.9;
}

.product-detail-section__add-btn svg {
    width: 16px;
    height: 16px;
    display: block;
    flex-shrink: 0;
    stroke: #FFDE60;
    fill: none;
}

.product-detail-section__add-btn span {
    white-space: nowrap;
    color: #FFDE60;
}

/* Discount badge */
.product-detail-section__discount {
    position: absolute;
    top: -32px;
    right: -32px;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Discount badge on gallery (for mobile) */
.product-detail-section__discount--gallery {
    display: none; /* Hidden on desktop */
}

.product-detail-section__discount-bg {
    position: absolute;
    inset: -11.11% -11.13%;
    z-index: 0;
}

.product-detail-section__discount-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-detail-section__discount-text {
    position: relative;
    z-index: 1;
    font-family: var(--font-tanker);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.56px;
    color: var(--color-light-brown);
}

/* Product Details */
.product-detail-section__details {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(109, 66, 29, 0.15);
    border-radius: 25px;
    padding: 24px;
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
    z-index: 4;
}

.product-detail-section__detail-item {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-detail-section__detail-title {
    font-family: var(--font-switzer);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.54px;
    color: var(--color-light-brown);
    margin: 0;
}

.product-detail-section__detail-text {
    font-family: var(--font-switzer);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.36px;
    color: var(--color-light-brown);
    opacity: 0.65;
    margin: 0;
}

.product-detail-section__detail-divider {
    width: 0;
    height: 106px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-detail-section__detail-divider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    width: 106px;
    height: 100%;
    background-image: url('../images/icons/line-divider.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Desktop: all in one row */
@media (min-width: 1024px) {
    .product-detail-section__info-content {
        flex-direction: row;
        gap: 80px;
    }
    
    .product-detail-section__info-title-row {
        gap: 80px;
        flex: 1;
    }
    
    .product-detail-section__info-controls-row {
        gap: 16px;
        flex-shrink: 0;
    }
    
    .product-detail-section__details {
        flex-direction: row;
        gap: 32px;
    }
    
    .product-detail-section__detail-item {
        width: auto;
    }
    
    .product-detail-section__detail-divider {
        width: 0;
        height: 106px;
    }
    
    .product-detail-section__detail-divider::before {
        display: block;
        transform: translateX(-50%) rotate(90deg);
    }
}

@media (max-width: 1023px) {
    .product-detail-section {
        height: auto;
        padding-top: 0;
        padding-bottom: 40px;
        margin-top: 0;
    }
    
    .product-detail-section__container {
        height: auto;
        padding-top: 0;
        padding-bottom: 20px;
    }
    
    .product-detail-section__back-btn {
        left: 16px;
        top: 16px;
        padding: 8px 16px;
    }
    
    .product-detail-section__gallery {
        margin-top: 0;
        padding-top: 0;
    }
    
    /* Arrows hidden on tablet breakpoint - only show on mobile and desktop */
    .product-detail-section__arrow {
        display: none;
    }
    
    .product-detail-section__info-wrapper {
        width: calc(100% - 32px);
        bottom: 20px;
        position: relative;
        transform: none;
        left: auto;
        margin: 20px auto 0;
    }
    
    .product-detail-section__gallery {
        position: relative;
        height: auto;
        margin-bottom: 20px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
    }
    
    .product-detail-section__gallery-item {
        flex: 0 0 100%;
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        scroll-snap-align: start;
    }
    
    .product-detail-section__gallery-img {
        width: 100%;
        height: auto;
        max-height: 500px;
        object-fit: contain;
        object-position: center;
        display: block;
    }
    
    .product-detail-section__arrow {
        display: none;
    }
    
    /* Show gallery discount badge on mobile, hide info card discount badge */
    .product-detail-section__discount--gallery {
        display: flex;
        position: absolute;
        bottom: 20px;
        left: 20px;
        top: auto;
        right: auto;
        width: 72px;
        height: 72px;
        z-index: 10;
    }
    
    .product-detail-section__info-card .product-detail-section__discount {
        display: none; /* Hide discount badge on info card for mobile */
    }
    
    .product-detail-section__info-card {
        width: 100%;
        margin: 0 auto 8px;
        padding: 20px 24px;
        position: relative;
    }
    
    .product-detail-section__info-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .product-detail-section__info-title-row {
        gap: 16px;
        width: 100%;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .product-detail-section__name-wrapper {
        flex-direction: column;
        gap: 0;
        flex: 1;
        min-width: 0;
    }
    
    .product-detail-section__product-name {
        font-size: 32px;
        line-height: 1.1;
        margin: 0;
    }
    
    .product-detail-section__unit-price-info {
        display: none;
    }
    
    .product-detail-section__price-box {
        min-width: 80px;
        flex-shrink: 0;
        align-self: flex-start;
    }
    
    .product-detail-section__price {
        font-size: 28px;
    }
    
    .product-detail-section__info-controls-row {
        gap: 8px;
        width: 100%;
        justify-content: space-between;
    }
    
    .product-detail-section__quantity-wrapper {
        flex-shrink: 0;
    }
    
    .product-detail-section__add-btn {
        flex: 1;
        min-width: 0;
    }
    
    .product-detail-section__details {
        width: 100%;
        margin: 0 auto;
        flex-direction: column;
        gap: 24px;
        padding: 24px;
        position: relative;
        transform: none;
        left: auto;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(109, 66, 29, 0.15);
    }
    
    .product-detail-section__detail-divider {
        width: 100%;
        height: 0;
    }
    
    .product-detail-section__detail-divider::before {
        display: block;
    }
}

@media (max-width: 767px) {
    .product-detail-section__name-wrapper {
        gap: 0;
    }
    
    .product-detail-section__product-name {
        font-size: 32px;
        line-height: 1.1;
    }
    
    .product-detail-section__unit-price-info {
        display: none;
    }
    
    .product-detail-section__price {
        font-size: 28px;
    }
    
    .product-detail-section__info-content {
        gap: 24px;
    }
    
    .product-detail-section__info-title-row {
        gap: 16px;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .product-detail-section__info-controls-row {
        gap: 8px;
        justify-content: space-between;
    }
    
    .product-detail-section__gallery {
        position: relative;
        height: auto;
        margin-top: 0;
        padding-top: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
    }
    
    .product-detail-section__gallery-item {
        flex: 0 0 100%;
        width: 100%;
        height: auto;
    }
    
    .product-detail-section__gallery-img {
        max-height: 500px;
        width: 100%;
        height: auto;
    }
    
    .product-detail-section__arrow {
        position: absolute;
        top: 40%;
        transform: translateY(-50%);
        z-index: 100;
    }
    
    .product-detail-section__arrow--left {
        left: 16px;
    }
    
    .product-detail-section__arrow--right {
        right: 16px;
    }
    
    .product-detail-section__back-btn {
        top: 16px;
    }
    
    .product-detail-section__details {
        flex-direction: column;
        gap: 24px;
        border: 1px solid rgba(109, 66, 29, 0.15);
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .product-detail-section__detail-item {
        flex: none;
        width: 100%;
    }
    
    .product-detail-section__detail-divider {
        width: 100%;
        height: 0;
    }
    
    .product-detail-section__detail-divider::before {
        display: block;
    }
}

/* --------------------------------------------------------------------------
   33. ALERT MESSAGES
   -------------------------------------------------------------------------- */
.alert {
    padding: 16px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 600;
}

.alert--success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert--error {
    background-color: rgba(222, 80, 30, 0.1);
    color: var(--color-red);
    border: 1px solid rgba(222, 80, 30, 0.2);
}

.alert--warning {
    background-color: rgba(255, 222, 96, 0.2);
    color: var(--color-light-brown);
    border: 1px solid rgba(255, 222, 96, 0.4);
}

/* --------------------------------------------------------------------------
   30. PRODUCTS LIST PAGE
   -------------------------------------------------------------------------- */
.products-hero {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.products-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 767px) {
    .products-hero {
        height: 200px;
    }
}

/* Footer Content */
.footer-content {
    padding: 120px 0 50px;
}

.footer-content__text {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    color: var(--color-cream-light);
    opacity: 0.6;
    margin: 0;
    max-width: 440px;
}

.footer-content__links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-content__link {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    color: var(--color-cream-light);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-content__link:hover {
    opacity: 0.8;
}

.footer-content__contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-content__contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-content__contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-content__contact-item span {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.28px;
    color: var(--color-cream-light);
}

@media (max-width: 1023px) {
    .footer-content {
        padding: 80px 0 40px;
    }
}

@media (max-width: 767px) {
    .footer-content {
        padding: 40px 0 24px;
    }
    
    .footer-content__text {
        font-size: 16px;
        letter-spacing: 0.48px;
    }
}

/* --------------------------------------------------------------------------
   31. CART PAGE
   -------------------------------------------------------------------------- */
/* Cart Hero */
.cart-hero {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cart-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cart-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.cart-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding-top: 72px;
}

.cart-hero__title {
    font-family: var(--font-tanker);
    font-size: 72px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: white;
    margin: 0;
}

/* Cart Progress */
.cart-progress {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 80px;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cart-progress__text {
    font-family: var(--font-switzer);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.4px;
    color: var(--color-light-brown);
    margin: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cart-progress__text strong {
    font-weight: 700;
}

.cart-progress__text svg {
    flex-shrink: 0;
}

.cart-progress__bar {
    position: relative;
    width: 600px;
    max-width: 100%;
    height: 8px;
    background: transparent;
    border-radius: 25px;
    overflow: visible;
}

.cart-progress__fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--color-light-brown);
    border-radius: 25px;
    transition: width 0.5s ease, background 0.5s ease, background-color 0.5s ease;
    z-index: 1;
    will-change: width, background-color;
}

.cart-progress__remaining {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 146px;
    background: var(--color-light-brown);
    opacity: 0.15;
    border-radius: 25px;
    transform: rotate(180deg) scaleY(-1);
}

.cart-progress__icon {
    position: absolute;
    top: -8px;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    z-index: 10;
    transition: left 0.3s ease;
}

.cart-progress__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Cart Items */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
    width: 100%;
}

.cart-item {
    position: relative;
    width: 100%;
}

.cart-item__divider {
    width: 100%;
    height: 1px;
    margin: 0;
    overflow: visible;
    position: relative;
    display: block;
}

.cart-item__divider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

/* Cart Content Section */
.cart-content-section {
    padding: 80px 160px 120px;
}

/* Cart item row - redesigned to match Figma */
.cart-item__row {
    display: flex;
    align-items: center;
    gap: 120px;
    padding: 32px 0;
    width: 100%;
}

.cart-item__left {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1 0 0;
    min-width: 0;
    position: relative;
}

.cart-item__right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    justify-content: flex-end;
}

.cart-item__image {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 25px;
    overflow: hidden;
}

.cart-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream-dark);
}

.cart-item__discount {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.cart-item__discount-bg {
    position: absolute;
    inset: -12.5% -12.52%;
    z-index: 0;
}

.cart-item__discount-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item__discount-text {
    position: relative;
    z-index: 1;
    font-family: var(--font-tanker);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.4px;
    color: var(--color-light-brown);
}

.cart-item__details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 0 0;
    min-width: 0;
}

.cart-item__name-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}


.cart-item__name {
    font-family: var(--font-switzer);
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.4px;
    color: var(--color-light-brown);
    margin: 0;
}

.cart-item__unit-price-info {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(109, 66, 29, 0.6);
}

.cart-item__weight {
    font-family: var(--font-switzer);
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.35;
    letter-spacing: -0.64px;
    color: var(--color-light-brown);
    opacity: 0.4;
    margin: 0;
}

.cart-item__description {
    font-family: var(--font-switzer);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.36px;
    color: var(--color-light-brown);
    opacity: 0.6;
    margin: 0;
}


/* Cart item right - now using Bootstrap flex utilities */

.cart-item__quantity-box {
    background: white;
    border-radius: 15px;
    padding: 6px 16px;
    box-shadow: 0px 5px 25px rgba(101, 37, 0, 0.15);
    height: 68px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cart-item__quantity-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(51, 24, 0, 0.05);
    border-radius: 5px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding: 0;
    min-width: 40px;
    min-height: 40px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.cart-item__quantity-btn:hover {
    background-color: rgba(51, 24, 0, 0.15);
    transform: scale(1.05);
}

.cart-item__quantity-btn:active {
    transform: scale(0.95);
    background-color: rgba(51, 24, 0, 0.2);
}

.cart-item__quantity-value {
    font-family: var(--font-switzer);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.4px;
    color: var(--color-light-brown);
    width: 34px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-item__price-box {
    border: 1px solid rgba(109, 66, 29, 0.15);
    border-radius: 15px;
    padding: 0 20px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    flex-shrink: 0;
}

.cart-item__price {
    font-family: var(--font-switzer);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.4px;
    color: var(--color-light-brown);
}

.cart-item__remove {
    background: none;
    border: none;
    padding: 10px 8px;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    height: 44px;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.cart-item__remove:hover {
    opacity: 0.8;
}

.cart-item__remove-text {
    font-family: var(--font-switzer);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.36px;
    color: var(--color-light-brown);
}

.cart-item__remove-underline {
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    overflow: visible;
}

.cart-item__remove-underline img {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}


/* Cart Summary */
.cart-summary {
    margin-bottom: 0;
    width: 100%;
}

.cart-summary__total {
    background: var(--color-cream-light);
    border-radius: 25px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-summary__total-label {
    font-family: var(--font-switzer);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.48px;
    color: var(--color-light-brown);
}

.cart-summary__total-price {
    font-family: var(--font-tanker);
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: var(--color-light-brown);
    text-transform: uppercase;
}

/* Cart Actions */
.cart-actions {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    width: 100%;
    margin-top: 0;
}

.btn--outline {
    border: 1.5px solid var(--color-light-brown);
    background: transparent;
    color: var(--color-light-brown);
    padding: 10px 40px;
    border-radius: 25px;
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    height: 56px;
    white-space: nowrap;
}

.btn--outline:hover {
    opacity: 0.8;
    color: var(--color-light-brown);
    text-decoration: none;
}

.btn--primary {
    background: var(--color-yellow);
    color: var(--color-light-brown);
    padding: 10px 40px;
    border-radius: 25px;
    font-family: var(--font-switzer);
    font-size: 16px;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s ease;
    height: 56px;
    white-space: nowrap;
    border: none;
}

.btn--primary:hover {
    opacity: 0.9;
    color: var(--color-light-brown);
    text-decoration: none;
}

.btn--primary .btn__icon-img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

@media (max-width: 1023px) {
    .cart-content-section {
        padding: 40px 24px 80px;
    }
    
    .cart-hero {
        height: 200px;
    }
    
    .cart-hero__title {
        font-size: 40px;
    }
    
    .cart-progress {
        margin-bottom: 32px;
    }
    
    .cart-progress__bar {
        width: 100%;
    }
    
    .cart-progress__text {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    /* Mobile layout adjustments */
    .cart-item__row {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
        padding: 24px 0;
    }
    
    .cart-item__left {
        width: 100%;
        flex-direction: row;
        gap: 24px;
        align-items: flex-start;
    }
    
    .cart-item__image {
        width: 100px;
        height: 100px;
        flex-shrink: 0;
        border-radius: 25px;
    }
    
    .cart-item__discount {
        left: -10px;
        top: -10px;
        width: 50px;
        height: 50px;
    }
    
    .cart-item__discount-text {
        font-size: 16px;
    }
    
    .cart-item__details {
        flex: 1;
        gap: 8px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-item__name-row {
        gap: 0;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .cart-item__name {
        font-size: 18px;
        line-height: 1.4;
        letter-spacing: -0.36px;
        margin-bottom: 0;
        font-weight: 700;
        width: 100%;
    }
    
    .cart-item__description {
        font-size: 14px;
        line-height: 1.4;
        letter-spacing: -0.28px;
        margin-bottom: 0;
        opacity: 0.6;
        font-weight: 500;
        width: 100%;
    }
    
    .cart-item__weight {
        font-size: 14px;
        line-height: 1.4;
        letter-spacing: -0.28px;
        opacity: 0.4;
        font-style: normal;
        font-weight: 500;
        width: 100%;
    }
    
    .cart-item__right {
        width: 100%;
        flex-direction: row;
        gap: 8px;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    
    .cart-item__remove {
        margin-left: auto;
    }
    
    .cart-item__quantity-box {
        flex: 0 0 auto;
        height: auto;
        padding: 8px;
        gap: 12px;
    }
    
    .cart-item__quantity-btn {
        width: 32px;
        height: 32px;
    }
    
    .cart-item__quantity-value {
        min-width: 34px;
        height: 32px;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
    }
    
    .cart-item__price-box {
        flex: 0 0 auto;
        height: auto;
        padding: 0 16px;
        justify-content: center;
        min-width: auto;
        display: flex;
        align-items: center;
    }
    
    .cart-item__price {
        font-size: 20px;
        font-weight: 600;
        line-height: 1.4;
        letter-spacing: -0.4px;
    }
    
    
    .cart-summary {
        padding: 16px 24px;
        border-radius: 25px;
    }
    
    .cart-summary__total-label {
        font-size: 20px;
        font-weight: 600;
        letter-spacing: -0.4px;
    }
    
    .cart-summary__total-price {
        font-size: 28px;
        font-family: var(--font-tanker);
        letter-spacing: 0.56px;
        text-transform: uppercase;
    }
    
    .cart-actions {
        flex-direction: column-reverse;
        gap: 8px;
        margin-top: 32px;
    }
    
    .btn--outline,
    .btn--primary {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .cart-hero__title {
        font-size: 40px;
    }
    
    .cart-progress__text {
        font-size: 18px;
    }
    
    /* .cart-item__row removed - using Bootstrap row instead */
    
    .cart-item__image {
        width: 80px;
        height: 80px;
    }
    
    .cart-item__name {
        font-size: 18px;
    }
    
    .cart-item__description {
        font-size: 14px;
    }
    
    .cart-item__weight {
        font-size: 14px;
    }
    
    .cart-item__quantity-box {
        height: 56px;
        padding: 6px 10px;
        gap: 8px;
    }
    
    .cart-item__quantity-btn {
        width: 28px;
        height: 28px;
        padding: 8px;
    }
    
    .cart-item__quantity-value {
        width: 30px;
        height: 28px;
        font-size: 18px;
    }
    
    .cart-item__price-box {
        height: 56px;
        padding: 0 16px;
    }
    
    .cart-item__price {
        font-size: 18px;
    }
    
    .cart-summary__total-label {
        font-size: 18px;
    }
    
    .cart-summary__total-price {
        font-size: 24px;
    }
}

/* --------------------------------------------------------------------------
   32. CHECKOUT PAGE
   -------------------------------------------------------------------------- */
/* Checkout Form */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.checkout-form__title {
    font-family: var(--font-switzer);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.4px;
    color: var(--color-light-brown);
    margin: 0 0 24px 0;
}

.checkout-form__section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checkout-form__section-title {
    font-family: var(--font-switzer);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.4px;
    color: var(--color-light-brown);
    margin: 0;
}

.checkout-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkout-form__label {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.28px;
    color: var(--color-light-brown);
    padding-left: 8px;
}

.checkout-form__input-wrapper {
    position: relative;
}

.checkout-form__input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    opacity: 0.4;
    pointer-events: none;
}

.checkout-form__consents {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkout-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
}

.checkout-form__checkbox-input {
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--color-light-brown);
    border-radius: 5px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
    appearance: none;
    position: relative;
}

.checkout-form__checkbox-input:checked {
    background: var(--color-light-brown);
}

.checkout-form__checkbox-input:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8.5px;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='6' viewBox='0 0 9 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3L3.5 5.5L8 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.checkout-form__checkbox-text {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.28px;
    color: var(--color-light-brown);
}

.checkout-form__link {
    color: var(--color-light-brown);
    text-decoration: underline;
    text-underline-position: from-font;
}

/* Checkout Summary */
.checkout-summary {
    background: rgba(255, 246, 234, 0.15);
    border: 1px solid rgba(109, 66, 29, 0.15);
    border-radius: 25px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.checkout-summary__title {
    font-family: var(--font-switzer);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.4px;
    color: var(--color-light-brown);
    margin: 0;
}

.checkout-summary__items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.checkout-summary__divider {
    width: 100%;
    height: 1px;
    margin: 0;
    overflow: hidden;
}

.checkout-summary__divider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.checkout-summary__item {
    display: flex;
    gap: 32px;
    align-items: center;
    padding: 0;
}

.checkout-summary__item-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 25px;
    overflow: hidden;
}

.checkout-summary__item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-summary__item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream-dark);
}

.checkout-summary__item-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.checkout-summary__item-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.checkout-summary__item-name {
    font-family: var(--font-switzer);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.4px;
    color: var(--color-light-brown);
    margin: 0;
    flex: 1;
    min-width: 0;
}

.checkout-summary__item-unit-price {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(109, 66, 29, 0.6);
}

.checkout-summary__item-weight {
    font-family: var(--font-switzer);
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.35;
    letter-spacing: -0.64px;
    color: var(--color-light-brown);
    opacity: 0.4;
    margin: 0;
}

.checkout-summary__item-description {
    font-family: var(--font-switzer);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.36px;
    color: var(--color-light-brown);
    opacity: 0.6;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.checkout-summary__item-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.checkout-summary__item-quantity {
    font-family: var(--font-switzer);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.4px;
    color: var(--color-light-brown);
    flex: 1;
}

.checkout-summary__item-price {
    font-family: var(--font-switzer);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.4px;
    color: var(--color-light-brown);
    text-align: right;
}

.checkout-summary__delivery {
    background: rgba(109, 66, 29, 0.03);
    border-radius: 25px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 71px;
}

.checkout-summary__delivery-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.checkout-summary__delivery-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.checkout-summary__delivery-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.checkout-summary__delivery-label {
    font-family: var(--font-switzer);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.4px;
    color: var(--color-light-brown);
    margin: 0;
}

.checkout-summary__delivery-date {
    font-family: var(--font-switzer);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.4px;
    color: var(--color-light-brown);
    opacity: 0.75;
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    width: 100%;
}

.checkout-summary__delivery-price {
    font-family: var(--font-switzer);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.4px;
    color: var(--color-light-brown);
    text-align: right;
    flex-shrink: 0;
}

.checkout-summary__total {
    background: var(--color-cream-light);
    border-radius: 25px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-summary__total-label {
    font-family: var(--font-switzer);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.4px;
    color: var(--color-light-brown);
}

.checkout-summary__total-price {
    font-family: var(--font-tanker);
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.56px;
    color: var(--color-light-brown);
    text-transform: uppercase;
}

/* Checkout Actions */
.checkout-actions {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    margin-top: 40px;
}

@media (max-width: 1023px) {
    .checkout-form {
        gap: 40px;
    }
    
    .checkout-summary {
        margin-top: 40px;
    }
    
    .checkout-actions {
        flex-direction: row;
        gap: 0;
    }
}

@media (max-width: 767px) {
    .checkout-form__title,
    .checkout-form__section-title {
        font-size: 18px;
    }
    
    .checkout-summary {
        padding: 24px;
        gap: 32px;
    }
    
    .checkout-summary__item {
        gap: 24px;
    }
    
    .checkout-summary__item-image {
        width: 80px;
        height: 80px;
    }
    
    .checkout-summary__item-name {
        font-size: 18px;
    }
    
    .checkout-summary__item-description {
        font-size: 16px;
    }
    
    .checkout-summary__item-quantity,
    .checkout-summary__item-price {
        font-size: 18px;
    }
    
    .checkout-actions {
        flex-direction: column-reverse;
        gap: 8px;
    }
    
    .btn--outline,
    .btn--primary {
        width: 100%;
    }
}

/* --------------------------------------------------------------------------
   33. CHECKOUT SUCCESS PAGE
   -------------------------------------------------------------------------- */
.checkout-success {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-success__header {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    text-align: center;
}

.checkout-success__icon {
    width: 81px;
    height: 80px;
    flex-shrink: 0;
}

.checkout-success__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.checkout-success__message {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checkout-success__title {
    font-family: var(--font-tanker);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 1.12px;
    color: var(--color-light-brown);
    margin: 0;
}

.checkout-success__text {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.28px;
    color: rgba(109, 66, 29, 0.65);
    margin: 0;
}

.checkout-success__delivery {
    background: rgba(109, 66, 29, 0.03);
    border-radius: 25px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-success__delivery-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.checkout-success__delivery-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.checkout-success__delivery-label {
    font-family: var(--font-switzer);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.32px;
    color: var(--color-light-brown);
}

.checkout-success__delivery-date {
    font-family: var(--font-switzer);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    color: var(--color-light-brown);
    margin-left: auto;
}

.checkout-success__summary {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.checkout-success__summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.checkout-success__summary-title {
    font-family: var(--font-tanker);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.56px;
    color: var(--color-light-brown);
    margin: 0;
    flex: 1;
}

.checkout-success__summary-number {
    font-family: var(--font-switzer);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.42px;
    text-transform: uppercase;
    color: var(--color-light-brown);
    margin: 0;
    text-align: right;
    flex: 1;
}

.checkout-success__summary-number-label {
    font-weight: 500;
    color: rgba(109, 66, 29, 0.65);
    letter-spacing: -0.28px;
    text-transform: none;
}

.checkout-success__items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.checkout-success__divider {
    width: 100%;
    height: 1px;
    margin: 0;
    overflow: hidden;
}

.checkout-success__divider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.checkout-success__item {
    display: flex;
    gap: 120px;
    align-items: center;
    padding: 24px 0;
    position: relative;
}

.checkout-success__item-image {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 25px;
    overflow: hidden;
}

.checkout-success__item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-success__item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream-dark);
}

.checkout-success__item-discount {
    position: absolute;
    top: -16px;
    left: -9px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.checkout-success__item-discount-bg {
    position: absolute;
    inset: -12.5% -12.52%;
    z-index: 0;
}

.checkout-success__item-discount-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.checkout-success__item-discount-text {
    position: relative;
    z-index: 1;
    font-family: var(--font-tanker);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.4px;
    color: var(--color-light-brown);
}

.checkout-success__item-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.checkout-success__item-header {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.checkout-success__item-name {
    font-family: var(--font-switzer);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.4px;
    color: var(--color-light-brown);
    margin: 0;
}

.checkout-success__item-weight {
    font-family: var(--font-switzer);
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.35;
    letter-spacing: -0.64px;
    color: var(--color-light-brown);
    opacity: 0.4;
    margin: 0;
}

.checkout-success__item-description {
    font-family: var(--font-switzer);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.36px;
    color: var(--color-light-brown);
    opacity: 0.6;
    margin: 0;
}

.checkout-success__item-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.checkout-success__item-quantity {
    font-family: var(--font-switzer);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.4px;
    color: var(--color-light-brown);
    flex: 1;
}

.checkout-success__item-price {
    font-family: var(--font-switzer);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.4px;
    color: var(--color-light-brown);
    text-align: right;
}

.checkout-success__total {
    background: var(--color-cream-light);
    border-radius: 25px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-success__total-label {
    font-family: var(--font-switzer);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.48px;
    color: var(--color-light-brown);
}

.checkout-success__total-price {
    font-family: var(--font-tanker);
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    color: var(--color-light-brown);
    text-transform: uppercase;
}

.checkout-success__actions {
    display: flex;
    justify-content: center;
}

@media (max-width: 1023px) {
    .checkout-success {
        gap: 60px;
    }
    
    .checkout-success__summary-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .checkout-success__item {
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .checkout-success {
        gap: 40px;
    }
    
    .checkout-success__title {
        font-size: 40px;
    }
    
    .checkout-success__item {
        gap: 24px;
        padding: 16px 0;
    }
    
    .checkout-success__item-image {
        width: 80px;
        height: 80px;
    }
    
    .checkout-success__item-name {
        font-size: 18px;
    }
    
    .checkout-success__item-description {
        font-size: 16px;
    }
    
    .checkout-success__item-quantity,
    .checkout-success__item-price {
        font-size: 18px;
    }
    
    .checkout-success__total {
        padding: 24px;
    }
    
    .checkout-success__total-label {
        font-size: 20px;
    }
    
    .checkout-success__total-price {
        font-size: 28px;
    }
}

/* Delivery Selection Styles */
.delivery-selection {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(51, 24, 0, 0.1);
}

.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.delivery-option {
    position: relative;
    cursor: pointer;
    display: block;
}

.delivery-option__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.delivery-option__content {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background: #FFF;
    border: 2px solid #F1ECE4;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.delivery-option__input:checked + .delivery-option__content {
    border-color: #331800;
    background: #FAF8F5;
}

.delivery-option__icon {
    width: 48px;
    height: 48px;
    background: #FAF8F5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.delivery-option__input:checked + .delivery-option__content .delivery-option__icon {
    background: #331800;
}

.delivery-option__icon img {
    width: 24px;
    height: 24px;
}

.delivery-option__input:checked + .delivery-option__content .delivery-option__icon img {
    filter: brightness(0) invert(1);
}

.delivery-option__info {
    flex-grow: 1;
}

.delivery-option__title {
    display: block;
    font-family: 'Tanker', sans-serif;
    font-size: 1.1rem;
    color: #331800;
    margin-bottom: 0.25rem;
}

.delivery-option__description {
    display: block;
    font-size: 0.9rem;
    color: rgba(51, 24, 0, 0.6);
}

.delivery-option__price {
    font-family: 'Tanker', sans-serif;
    font-size: 1.1rem;
    color: #331800;
    margin-left: 1.25rem;
}

.delivery-option__content {
    position: relative;
    overflow: hidden;
}



/* Bulk Discount Notice */
.bulk-discount-notice {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background: #FAF8F5;
    border: 1px dashed rgba(51, 24, 0, 0.2);
    border-radius: 16px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.bulk-discount-notice--active {
    background: #FFFBEB;
    border: 1px solid #FFDE60;
    box-shadow: 0 4px 15px rgba(255, 222, 96, 0.15);
}

.bulk-discount-notice__icon {
    font-size: 1.5rem;
    margin-right: 1.25rem;
}

.bulk-discount-notice__text {
    margin: 0;
    font-size: 0.95rem;
    color: #331800;
}

.bulk-discount-notice__status {
    margin: 0.25rem 0 0 0;
    font-size: 0.85rem;
    color: #10B981;
    font-weight: 600;
}

/* Cart Bulk Discount Badges */
.badge-discount {
    display: inline-block;
    padding: 4px 12px;
    background-color: #FFDE60;
    color: #331800;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.text-xs {
    font-size: 0.75rem;
}

.text-muted {
    color: rgba(51, 24, 0, 0.5);
}

/* Inline adjustments for cart item name row */
.cart-item__name-row {
    margin-bottom: 0.25rem;
}

.cart-item__bulk-info {
    display: inline-flex;
    align-items: center;
}

.badge-discount {
    white-space: nowrap;
}

/* Bulk Discount Banner */
.bulk-discount-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 32px;
    background-color: var(--color-cream-light);
    border-radius: var(--radius-xl);
    margin-bottom: 32px;
}

.bulk-discount-banner--info {
    background-color: var(--color-cream-light);
}

.bulk-discount-banner__icon {
    font-size: 40px;
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bulk-discount-banner--info .bulk-discount-banner__icon {
    opacity: 0.6;
}

.bulk-discount-banner__content {
    flex: 1;
}

.bulk-discount-banner__title {
    font-family: var(--font-switzer);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-light-brown);
    margin-bottom: 6px;
    line-height: 1.4;
    letter-spacing: -0.2px;
}

.bulk-discount-banner__text {
    font-family: var(--font-switzer);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-light-brown);
    opacity: 0.8;
    line-height: 1.5;
    margin: 0;
}

.bulk-discount-banner__text strong {
    color: var(--color-light-brown);
    opacity: 1;
    font-weight: 700;
}

@media (max-width: 767px) {
    .bulk-discount-banner {
        padding: 20px 24px;
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .bulk-discount-banner__icon {
        font-size: 32px;
        width: 40px;
        height: 40px;
    }
    
    .bulk-discount-banner__title {
        font-size: 18px;
    }
    
    .bulk-discount-banner__text {
        font-size: 14px;
    }
}

.cart-summary__row--discount {
    color: #10B981;
}

.cart-summary__price--discount {
    color: #10B981;
    font-weight: 700;
}

/* Cart Summary Additional Rows */
/* --------------------------------------------------------------------------
   PRODUCT GALLERY LIGHTBOX MODAL
   -------------------------------------------------------------------------- */
.product-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-lightbox.active {
    display: flex;
    opacity: 1;
}

.product-lightbox__content {
    position: relative;
    max-width: 90vw;
    height: 90vh;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-lightbox__img {
    max-width: 100%;
    height: 90vh;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.product-lightbox__img.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

.product-lightbox__img.slide-left {
    animation: slideOutLeft 0.3s ease forwards;
}

.product-lightbox__img.slide-right {
    animation: slideOutRight 0.3s ease forwards;
}

.product-lightbox__img.slide-in-left {
    animation: slideInLeft 0.3s ease forwards;
}

.product-lightbox__img.slide-in-right {
    animation: slideInRight 0.3s ease forwards;
}

@keyframes slideOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-100px);
    }
}

@keyframes slideOutRight {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(100px);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
    z-index: 10001;
    transition: background-color 0.2s ease;
}

.product-lightbox__close:hover {
    background-color: rgba(255, 255, 255, 1);
}

.product-lightbox__close::before {
    content: '×';
    font-size: 32px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-lightbox__prev,
.product-lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10001;
    background: none;
    border: none;
    padding: 18px;
    cursor: pointer;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.product-lightbox__prev {
    left: 50px;
}

.product-lightbox__next {
    right: 50px;
}

.product-lightbox__prev:disabled,
.product-lightbox__next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 767px) {
    .product-lightbox__close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    
    .product-lightbox__close::before {
        font-size: 28px;
    }
    
    .product-lightbox__prev,
    .product-lightbox__next {
        display: none;
    }
}

.cart-summary__rows {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 0.95rem;
    padding: 0 40px;
}

.cart-summary__row--original .cart-summary__price {
    text-decoration: line-through;
    color: rgba(51, 24, 0, 0.4);
}

.cart-summary__row--savings {
    color: #10B981;
    font-weight: 600;
}

.cart-summary__label {
    color: rgba(51, 24, 0, 0.6);
}
