/* CSS Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --text-color: #333;
    --text-light: #777;
    --topbar-bg: #111;
    --benefits-bg: #222;
    --border-color: #eee;
    --font-family: 'Montserrat', sans-serif;
    --transition-fast: 0.3s ease;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.5;
    background-color: var(--secondary-color);
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 10px 28px rgba(10, 74, 33, 0.28);
    color: #fff;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.whatsapp-float span {
    position: absolute;
    right: 70px;
    width: max-content;
    padding: 8px 11px;
    border-radius: 3px;
    background: #171714;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    opacity: 0;
    pointer-events: none;
    transform: translateX(7px);
    transition: opacity .2s ease, transform .2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    background: #1fbd59;
    box-shadow: 0 14px 34px rgba(10, 74, 33, 0.36);
    transform: translateY(-3px) scale(1.03);
}

.whatsapp-float:hover span,
.whatsapp-float:focus-visible span {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

@media (max-width: 600px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }
    .whatsapp-float svg { width: 29px; height: 29px; }
    .whatsapp-float span { display: none; }
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px; /* adjusted padding */
}

.section-padding {
    padding: 60px 0;
}

.white-text {
    color: #fff;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.btn-primary:hover {
    background-color: #f1f1f1;
}

.black-btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 1px solid var(--primary-color);
}

.black-btn:hover {
    background-color: #333;
}

.btn-outline {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Top bar brands */
.topbar-brands {
    background-color: var(--topbar-bg);
    color: #aaa;
    font-size: 10px;
    letter-spacing: 1px;
    padding: 8px 0;
    text-align: center;
}

.brands-list {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.brands-list a.active {
    color: #fff;
    font-weight: 600;
}

.brands-list a:hover {
    color: #fff;
}

/* Benefits Top Bar */
.topbar-benefits {
    background-color: var(--benefits-bg);
    color: #fff;
    font-size: 11px;
    text-align: center;
    padding: 10px 0;
    letter-spacing: 0.5px;
}

/* Main Header */
.main-header {
    background-color: var(--secondary-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 20%;
}

.brand-logo {
    height: 35px; /* Using our logo.jpg */
    width: auto;
}

.desktop-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 25px;
}

.nav-list a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    padding: 10px 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-list a.nav-highlight,
.nav-list a.active {
    font-weight: 700;
}

.nav-list a.active::after {
    width: 100%;
}

.nav-list a.nav-sale {
    color: #c00;
}
.nav-list a.nav-sale::after {
    background-color: #c00;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 20%;
    justify-content: flex-end;
}

.icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    position: relative;
}

.icon-link .material-icons-outlined {
    font-size: 22px;
}

.cart-icon .cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
    line-height: 1;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Carousel Section */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide .hero-link {
    display: block;
    width: 100%;
    height: 100%;
}

.carousel-slide .hero-media {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide .hero-media > video,
.carousel-slide .hero-media > img {
    display: block;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.carousel-control:hover {
    opacity: 1;
}

.carousel-control .material-icons-outlined {
    font-size: 3rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.carousel-control.prev {
    left: 2%;
}

.carousel-control.next {
    right: 2%;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-indicators .indicator {
    width: 40px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.carousel-indicators .indicator.active {
    background-color: #fff;
}

.hero-image, .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-video {
    pointer-events: none;
}

.hero-content,
.section-banner .banner-content {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.hero-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 4px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Category Slider */
.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.shortcut-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 15px;
    scrollbar-width: thin; /* For Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.shortcut-list::-webkit-scrollbar {
    display: none;
}

.shortcut-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 150px;
    flex: 1;
}

.shortcut-img-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.shortcut-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.shortcut-item:hover .shortcut-img-wrapper img {
    transform: scale(1.1);
}

.shortcut-title {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Products Grid */
.products-grid-section {
    padding-top: 20px;
}

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

.product-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 15px;
    background-color: #f1f1f1;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.product-sold-out .product-img-wrapper img {
    filter: saturate(.55);
}
.stock-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    padding: 6px 9px;
    background: rgba(23, 23, 20, .9);
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .12em;
}

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

.add-to-cart-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-card:hover .add-to-cart-btn {
    opacity: 1;
    transform: translateY(0);
}

.add-to-cart-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}
.wishlist-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    min-height: 40px;
    padding: 9px 12px;
    border: 1px solid #171714;
    background: transparent;
    color: #171714;
    font-family: inherit;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .08em;
    cursor: pointer;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}
.wishlist-inline .material-icons-outlined { font-size: 17px; }
.card-action > span:last-child:not(.material-icons-outlined),
.banner-bag > span:last-child:not(.material-icons-outlined) { display: none; }
.wishlist-inline:hover,
.wishlist-inline:focus-visible,
.wishlist-inline.active {
    background: #171714;
    color: #fff;
    outline: none;
}
.wishlist-quickview { margin-top: 16px; }

.product-name {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-color);
    text-transform: uppercase;
}

.product-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Winter Launch Section */
.winter-launch-section {
    padding-top: 20px;
}

.winter-grid {
    display: flex;
    gap: 15px;
}

.winter-small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    flex: 1;
}

.winter-large {
    flex: 1;
}

.winter-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #f4f4f4;
}

.winter-item.small {
    /* Enforce an aspect ratio to give consistent blocks */
    aspect-ratio: 3/4;
}

.winter-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.winter-item:hover img {
    transform: scale(1.03);
}

.winter-item .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    font-size: 9px;
    font-weight: 600;
    padding: 4px 8px;
    text-transform: uppercase;
}

.winter-item .wishlist-icon {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
    background: none;
    border: none;
}

.winter-item .wishlist-icon:hover {
    font-weight: bold;
}

/* Highlight Grids */
.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    grid-auto-flow: dense;
}

.grid-2-cols.has-featured-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr; /* Left (small) 1 part, Right (featured) 1.3 parts */
    gap: 20px;
    align-items: stretch;
}

.small-banners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 100%;
}

.small-banners-grid .promo-banner.small {
    height: 100%;
    min-height: auto;
}

.promo-banner {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: block;
}

.promo-banner.featured {
    height: 100%;
}

@media (max-width: 768px) {
    .grid-2-cols.has-featured-layout {
        grid-template-columns: 1fr;
    }
    .small-banners-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.promo-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.promo-banner:hover img {
    transform: scale(1.05);
}

.promo-text-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.promo-title {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 2px;
}

/* Services Bar */
.services-bar {
    background-color: #f7f7f7;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

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

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

.service-item .material-icons-outlined {
    font-size: 36px;
    color: var(--text-color);
    font-weight: 100;
}

.service-item strong {
    font-size: 13px;
    display: block;
    margin-bottom: 2px;
    letter-spacing: 1px;
}

.service-item p {
    font-size: 11px;
    color: var(--text-light);
}

/* Footer Section */
.site-footer {
    background-color: #fff;
    border-top: 1px solid var(--border-color);
}

/* Newsletter */
.newsletter-row {
    background-color: #f9f9f9;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.newsletter-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.newsletter-text p {
    font-size: 13px;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ccc;
    font-family: inherit;
    font-size: 13px;
    outline: none;
}

.newsletter-form input:focus {
    border-color: #000;
}

/* Footer Main Layout */
.footer-main-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a, .footer-col ul li {
    font-size: 13px;
    color: var(--text-light);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}
/* Auth Modal Base */
.modal {
    display: none;
    position: fixed;
    z-index: 4000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}
.modal.show {
    display: flex;
}
.modal-content {
    background-color: var(--secondary-color);
    padding: 40px;
    width: 95%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
}
.modal h2 {
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.modal p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 20px;
}
.modal form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.modal input {
    padding: 12px;
    border: 1px solid var(--border-color);
    font-family: inherit;
    font-size: 13px;
    outline: none;
}
.modal input:focus {
    border-color: var(--primary-color);
}
.full-width {
    width: 100%;
}
.auth-switch {
    margin-top: 15px;
    text-align: center;
}
.auth-switch a {
    text-decoration: underline;
    font-weight: 600;
}
.error-msg {
    color: red;
    font-size: 11px;
    margin-top: 10px;
    text-align: center;
}

/* Account Tabs */
.account-tabs { 
    display: flex; 
    border-bottom: 1px solid #ddd; 
    margin-top: 20px; 
    overflow-x: auto;
    scrollbar-width: thin;
}
.tab-btn { 
    background: none; 
    border: none; 
    padding: 10px 20px; 
    cursor: pointer; 
    text-transform: uppercase; 
    font-weight: 500; 
    font-family: inherit; 
    color: var(--text-light);
    transition: color var(--transition-fast);
}
.tab-btn:hover {
    color: var(--primary-color);
}
.tab-btn.active { 
    border-bottom: 2px solid var(--primary-color); 
    color: var(--primary-color);
    font-weight: 600;
}
.purchase-card, .voucher-card { 
    border: 1px solid var(--border-color); 
    padding: 15px; 
    margin-bottom: 15px; 
    border-radius: 4px; 
    text-align: left; 
    background-color: #fafafa;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Footer Bottom */
.footer-bottom {
    background-color: #f7f7f7;
    padding: 20px 0;
    font-size: 11px;
    color: var(--text-light);
}

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

.payment-methods span {
    font-weight: 600;
    margin: 0 5px;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .nav-list {
        gap: 15px;
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .header-left, .header-right {
        width: auto;
    }
    .grid-2-cols {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 2000;
        padding: 20px;
    }
    .desktop-nav.mobile-open {
        display: block;
    }
    .desktop-nav .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .winter-grid {
        flex-direction: column-reverse; /* Put big image first on mobile if desired, or column */
    }
    .mobile-menu-btn {
        display: block;
    }
    .header-left .brand-logo {
        margin-left: 10px;
    }
    .hidden-mobile {
        display: none !important;
    }
    .hero-title {
        font-size: 32px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .topbar-brands {
        display: none; /* Often hidden on mobile for space */
    }
}

@media (max-width: 480px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
}

/* Cart Sidebar */
.overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2500;
}
.overlay.show {
    display: block;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    z-index: 3000;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 15px rgba(0,0,0,0.1);
}
.sidebar.show {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}
.sidebar-header h2 {
    font-size: 14px;
    letter-spacing: 1px;
}
.close-sidebar {
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}
.empty-cart-msg {
    text-align: center;
    color: var(--text-light);
    font-size: 13px;
    margin-top: 30px;
}

.cart-item-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f1f1;
}
.cart-item-img {
    width: 70px;
    height: 90px;
    object-fit: cover;
}
.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cart-item-title {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}
.cart-item-price {
    font-size: 13px;
    font-weight: 600;
}
.cart-qty-controls {
    display: inline-grid;
    grid-template-columns: 34px 38px 34px;
    align-items: center;
    align-self: flex-start;
    min-height: 34px;
    border: 1px solid #d8d5cf;
    background: #fff;
}
.cart-qty-btn {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--primary-color);
    font: inherit;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: color var(--transition-fast), background-color var(--transition-fast);
}
.cart-qty-btn:hover,
.cart-qty-btn:focus-visible {
    background: var(--primary-color);
    color: var(--secondary-color);
    outline: none;
}
.cart-qty-value {
    display: grid;
    place-items: center;
    min-height: 20px;
    border-right: 1px solid #ebe8e2;
    border-left: 1px solid #ebe8e2;
    font-size: 12px;
    font-weight: 600;
}
.cart-item-remove {
    padding: 0;
    border: 0;
    background: transparent;
    font-family: inherit;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--text-light);
    cursor: pointer;
    align-self: flex-start;
    transition: color var(--transition-fast);
}
.cart-item-remove::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 2px;
    background: currentColor;
    transform: scaleX(.45);
    transform-origin: left;
    transition: transform var(--transition-fast);
}
.cart-item-remove:hover,
.cart-item-remove:focus-visible {
    color: var(--primary-color);
    outline: none;
}
.cart-item-remove:hover::after,
.cart-item-remove:focus-visible::after {
    transform: scaleX(1);
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background: #f9f9f9;
}
.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Stripe Form Extras */
.hidden { display: none !important; }
#payment-message {
    color: red;
    font-size: 12px;
    margin-top: 10px;
    text-align: center;
}
#payment-element {
    margin-bottom: 15px;
}
.spinner {
    border: 2px solid rgba(0,0,0,0.1);
    border-left-color: #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Skeleton Loaders */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.product-skeleton {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.skeleton-img {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}
.skeleton-text {
    height: 14px;
    width: 80%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}
.skeleton-text.short {
    width: 40%;
}

/* Promo Price */
.product-price-original {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    margin-right: 8px;
}
.product-price-promo {
    font-size: 14px;
    font-weight: 700;
    color: #c00;
}

/* Product Detail Modal */
.product-detail-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}
.product-detail-body .detail-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 4px;
}
.product-detail-body .detail-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}
.product-detail-body .detail-info h2 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.product-detail-body .detail-info .detail-description {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}
.product-detail-body .detail-sizes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.product-detail-body .detail-sizes button {
    padding: 8px 16px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-size: 12px;
    font-family: inherit;
    transition: all 0.2s;
}
.product-detail-body .detail-sizes button:hover,
.product-detail-body .detail-sizes button.selected {
    background: #000;
    color: #fff;
    border-color: #000;
}
.product-detail-body .detail-sizes button.out-of-stock {
    opacity: 0.3;
    text-decoration: line-through;
    cursor: not-allowed;
}
@media (max-width: 768px) {
    .product-detail-body {
        grid-template-columns: 1fr;
    }
}

/* Search Bar */
.search-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255,255,255,0.97);
    z-index: 4000;
    padding: 80px 20px 20px;
}
.search-overlay.show { display: block; }
.search-overlay .search-close {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}
.search-overlay .search-input-wrap {
    max-width: 600px;
    margin: 0 auto;
}
.search-overlay .search-input-wrap input {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: none;
    border-bottom: 2px solid #000;
    outline: none;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.search-results-grid {
    max-width: 900px;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-height: 60vh;
    overflow-y: auto;
}
@media (max-width: 768px) {
    .search-results-grid { grid-template-columns: repeat(2, 1fr); }
}


/* Products Page Specific Styles */
.products-page-container {
    display: flex;
    gap: 30px;
    padding-top: 40px;
}

.filters-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.filter-section {
    margin-bottom: 30px;
}

.filter-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-item {
    margin-bottom: 8px;
}

.filter-link {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    transition: color 0.2s;
}

.filter-link:hover, .filter-link.active {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
}

.products-main {
    flex-grow: 1;
}

.products-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.results-count {
    font-size: 13px;
    color: #666;
}

.sort-select {
    border: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    outline: none;
}

.mobile-filter-trigger {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .products-page-container {
        flex-direction: column;
    }
    .filters-sidebar {
        display: none;
        width: 100%;
    }
    .mobile-filter-trigger {
        display: flex;
    }
    .filters-sidebar.show-mobile {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 2000;
        padding: 30px;
        overflow-y: auto;
    }
}

/* Product Grid Styles */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-img-wrapper {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: #f5f5f5;
    margin-bottom: 12px;
}

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

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

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

.product-name {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.product-price {
    font-size: 13px;
    font-weight: 600;
}

.product-price-original {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
    font-size: 12px;
}

.product-price-promo {
    color: #000;
    font-weight: 700;
}

.add-to-cart-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .add-to-cart-btn {
    opacity: 1;
}

.add-to-cart-btn:hover {
    background-color: #000;
    color: #fff;
}

/* Skeletons */
.product-skeleton {
    display: flex;
    flex-direction: column;
}

.skeleton-img {
    aspect-ratio: 3 / 4;
    background: #eee;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.skeleton-text {
    height: 14px;
    background: #eee;
    margin-bottom: 10px;
    width: 100%;
}

.skeleton-text.short {
    width: 60%;
}

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

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

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Product QuickView Modal - Premium Zara Style (Carousel) */
.quickview-content {
    max-width: 1100px;
    width: 95%;
    padding: 0;
    display: flex;
    background: #fff;
    height: 85vh;
    border: none;
    overflow: hidden;
}

.quickview-left {
    flex: 1.3;
    position: relative;
    background: #fdfdfd;
    overflow: hidden;
}

.qv-carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.qv-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.qv-carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qv-carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Nav Arrows */
.qv-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
    color: #000;
}

.qv-nav .material-icons-outlined {
    font-size: 32px;
    font-weight: 300;
}

.qv-prev { left: 10px; }
.qv-next { right: 10px; }

/* Dots */
.qv-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.qv-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.qv-dot.active {
    background: #000;
    transform: scale(1.3);
}

.quickview-right {
    flex: 0.7;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    border-left: 1px solid #f0f0f0;
}

.qv-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qv-price {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 30px;
}

.qv-description {
    font-size: 11px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.qv-size-box {
    height: 45px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.qv-size-box:hover { border-color: #000; }
.qv-size-box.active { border-color: #000; font-weight: 700; background: #fafafa; }

.qv-add-btn {
    margin-top: 15px;
    background: #000;
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    width: 100%;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .quickview-content {
        flex-direction: column;
        height: 95vh;
    }
    .quickview-left { height: 60vh; }
    .quickview-right { padding: 30px 20px; border-left: none; }
}

/* Toast Notifications */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: #333;
    color: #fff;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 250px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
}

.toast.show {
    transform: translateX(0);
}

.toast-success { border-left: 4px solid #4CAF50; }
.toast-error { border-left: 4px solid #F44336; }
.toast-warning { border-left: 4px solid #FF9800; }
.toast-info { border-left: 4px solid #2196F3; }

.toast-icon { font-size: 18px; }

/* Shared accessible product and checkout controls */
.product-open { padding:0; border:0; background:transparent; width:100%; cursor:pointer; }
.product-open img { width:100%; }
.product-size, #qv-size { display:block; padding:10px; margin:12px 0; width:100%; border:1px solid #ddd; background:white; }
.qv-image { width:100%; height:auto; object-fit:contain; }
.shipping-choice { display:flex; gap:12px; align-items:center; padding:14px 0; border-bottom:1px solid #ddd; font-size:13px; }
#calculate-shipping-btn { margin:12px 0; }
#shipping-total { margin:16px 0; font-size:13px; }
button:disabled { opacity:.5; cursor:not-allowed; }
.purchase-card {
    margin: 0 0 16px;
    padding: 0;
    border: 1px solid #e6e3de;
    border-radius: 2px;
    background: #fff;
    color: #171714;
    font-size: 13px;
    overflow: hidden;
}
.purchase-card-header,
.purchase-meta,
.purchase-delivery,
.purchase-tracking {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.purchase-card-header { padding: 18px 20px 12px; }
.purchase-card-header > div,
.purchase-tracking > div { display: grid; gap: 3px; }
.purchase-eyebrow {
    color: #77736c;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.purchase-card-header strong { font-size: 15px; letter-spacing: .06em; }
.purchase-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #625e57;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .03em;
    text-align: right;
}
.purchase-status .material-icons-outlined { font-size: 17px; }
.purchase-card[data-order-status="paid"] .purchase-status { color: #2d6847; }
.purchase-card[data-order-status="refund_pending"] .purchase-status,
.purchase-card[data-order-status="review"] .purchase-status { color: #9a5c16; }
.purchase-card[data-order-status="refunded"] .purchase-status,
.purchase-card[data-order-status="charged_back"] .purchase-status { color: #a13737; }
.purchase-meta {
    padding: 0 20px 16px;
    color: #77736c;
    font-size: 11px;
    text-transform: capitalize;
}
.purchase-meta strong { color: #171714; font-size: 14px; }
.purchase-items {
    margin: 0;
    padding: 14px 20px;
    border-top: 1px solid #efede9;
    border-bottom: 1px solid #efede9;
    list-style: none;
}
.purchase-items li { display: flex; justify-content: space-between; gap: 12px; padding: 4px 0; }
.purchase-items small { color: #77736c; }
.purchase-delivery { justify-content: flex-start; padding: 15px 20px; }
.purchase-delivery > .material-icons-outlined { color: #77736c; font-size: 19px; }
.purchase-delivery p { margin: 3px 0 0; color: #77736c; font-size: 11px; line-height: 1.45; }
.purchase-tracking {
    align-items: flex-end;
    padding: 15px 20px;
    background: #f1f5f0;
    border-top: 1px solid #dfe9df;
}
.purchase-tracking strong { color: #214f36; font-size: 14px; letter-spacing: .08em; word-break: break-all; }
.purchase-tracking p { max-width: 210px; margin: 0; color: #526057; font-size: 10px; line-height: 1.45; text-align: right; }
.purchase-awaiting-tracking {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 13px 20px;
    border-top: 1px solid #eee8dc;
    background: #faf7f0;
    color: #75664a;
    font-size: 11px;
    line-height: 1.45;
}
.purchase-awaiting-tracking .material-icons-outlined { font-size: 18px; }
.purchase-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 20px;
    border-top: 1px solid #efede9;
}
.purchase-actions .btn-primary,
.purchase-actions .btn-secondary { padding: 10px 16px; border: 1px solid #171714; font-size: 10px; letter-spacing: .06em; }
.purchase-actions .btn-primary { background: #171714; color: #fff; }
.purchase-actions .btn-secondary { background: #fff; color: #171714; cursor: pointer; }
.purchase-card[data-order-status="expired"] .purchase-status,
.purchase-card[data-order-status="cancelled"] .purchase-status { color: #a13737; }
.purchase-loading,
.purchase-empty {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 36px 20px;
    color: #77736c;
    text-align: center;
}
.purchase-loading { display: flex; justify-content: center; }
.purchase-empty .material-icons-outlined { color: #aaa59c; font-size: 34px; }
.purchase-empty strong { color: #171714; }
.purchase-empty p { margin: 0; font-size: 11px; }
.purchase-error { padding: 16px; border-left: 3px solid #a13737; background: #fff5f5; color: #7e2929; }
.wishlist-item {
    display: grid;
    grid-template-columns: 64px 1fr 34px;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #ece9e4;
}
.wishlist-item img { width: 64px; height: 80px; object-fit: cover; background: #f2f1ee; }
.wishlist-item > div { display: grid; gap: 4px; }
.wishlist-item strong { font-size: 12px; text-transform: uppercase; }
.wishlist-item span,
.wishlist-item small { color: #77736c; font-size: 10px; }
.wishlist-item button {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid #dedbd5;
    background: #fff;
    color: #77736c;
    cursor: pointer;
}
.wishlist-item button:hover { border-color: #171714; color: #171714; }
.wishlist-empty {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 36px 16px;
    color: #77736c;
    text-align: center;
}
.wishlist-empty .material-icons-outlined { font-size: 32px; }
.wishlist-empty strong { color: #171714; }
.wishlist-empty p { margin: 0; font-size: 11px; }

#shipping-form input { min-width: 0; box-sizing: border-box; }
#shipping-modal .modal-content { width: calc(100% - 24px); box-sizing: border-box; }
@media (max-width: 480px) {
  .header-left { gap: 12px; }
  .header-left .brand-logo { max-width: 140px; height: auto; }
  .header-right { gap: 12px; }
  #shipping-modal .modal-content { padding: 24px 18px !important; }
  .purchase-card-header,
  .purchase-tracking { align-items: flex-start; flex-direction: column; }
  .purchase-status { text-align: left; }
  .purchase-tracking p { max-width: none; text-align: left; }
}

/* Keep section overlays anchored to their own media, outside the hero. */
.section-banner {
    display: block;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 0;
}
.section-banner .hero-media { height: 100%; }

/* Product banners open the same size-aware quick view as catalog cards. */
.purchasable-banner { position: relative; }
.banner-open {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: inherit;
    cursor: pointer;
}
.purchasable-banner .banner-bag {
    z-index: 12;
    top: 50%;
    left: 50%;
    bottom: auto;
    right: auto;
    width: 44px;
    height: 44px;
    opacity: 0;
    transform: translate(-50%, -40%);
}
.purchasable-banner:hover .banner-bag,
.purchasable-banner:focus-within .banner-bag {
    opacity: 1;
    transform: translate(-50%, -50%);
}
@media (hover: none) {
    .purchasable-banner .banner-bag { opacity: 1; transform: translate(-50%, -50%); }
}

.grid-2-cols .section-banner .hero-media { width: 100%; height: 100%; }

/* Product photo actions and image gallery */
.purchasable-banner::after,
.product-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 6;
    background: rgba(0, 0, 0, 0.38);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}
.purchasable-banner:hover::after,
.purchasable-banner:focus-within::after,
.product-img-wrapper:hover::after,
.product-img-wrapper:focus-within::after { opacity: 1; }
.banner-actions,
.card-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 12;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translate(-50%, -45%);
    transition: opacity .25s ease, transform .25s ease;
}
.purchasable-banner:hover .banner-actions,
.purchasable-banner:focus-within .banner-actions,
.product-img-wrapper:hover .card-actions,
.product-img-wrapper:focus-within .card-actions {
    opacity: 1;
    transform: translate(-50%, -50%);
}
.purchasable-banner .banner-actions .banner-bag,
.product-img-wrapper .card-actions .card-action,
.banner-actions .banner-photos {
    position: static;
    flex: none;
    width: 46px;
    height: 46px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    color: #111;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .18);
    cursor: pointer;
    opacity: 1;
    transform: none;
}
.purchasable-banner .banner-actions button:hover,
.product-img-wrapper .card-actions button:hover { background: #111; color: #fff; }
@media (hover: none) {
    .purchasable-banner::after,
    .product-img-wrapper::after { display: none; }
    .banner-actions,
    .card-actions { opacity: 1; transform: translate(-50%, -50%); }
}
.photo-gallery {
    position: fixed;
    inset: 0;
    z-index: 11000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 55px 16px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, .92);
}
.photo-gallery-image { max-width: min(82vw, 1050px); max-height: calc(100vh - 110px); object-fit: contain; }
.photo-gallery button { flex: none; border: 0; background: rgba(255,255,255,.13); color: #fff; cursor: pointer; }
.photo-gallery-prev,
.photo-gallery-next { width: 42px; height: 42px; border-radius: 50%; font-size: 32px; line-height: 1; }
.photo-gallery-close { position: absolute; top: 15px; right: 20px; width: 42px; height: 42px; font-size: 32px; }
.photo-gallery-count { position: absolute; bottom: 18px; color: #fff; font-size: 13px; }
@media (max-width: 600px) {
    .photo-gallery { gap: 4px; padding: 55px 8px; }
    .photo-gallery-image { max-width: calc(100vw - 100px); }
}
