/* --- RESET & BASICS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- ANNOUNCEMENT BAR --- */
.top-bar {
    background-color: #f5f5f5;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* --- HEADER & NAV --- */
header {
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
}

.nav-menu ul li a {
    position: relative;
    padding-bottom: 6px;
    text-decoration: none;
}

.nav-menu ul li a.active {
    color: #000;
}

.nav-menu ul li a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
}

.header-top {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    margin: 0 auto;
}

.icons {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
}

.icons i {
    margin-left: 20px;
    font-size: 18px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    cursor: pointer;
    position: absolute;
    left: 0;
}

.nav-menu {
    display: block;
    width: 100%;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.nav-menu li a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.nav-menu li a:hover {
    color: #888;
}

/* --- HERO / CAROUSEL --- */
.hero {
    min-height: 650px;
    height: 85vh;
    max-height: 900px;
    overflow: hidden;
}

.hero-carousel {
    position: relative; /* anchors the absolutely-positioned arrows to the carousel, not the page */
}

.hero-carousel .carousel-item img,
.hero-carousel img {
    width: 100%;
    height: clamp(600px, 85vh, 900px);
    object-fit: cover;
    object-position: center 20%; /* keeps faces in frame instead of cropping from center */
}

/* Prev / Next arrows — vertically centered on ALL devices via base rule.
   Media queries below only change size/spacing, never top/transform. */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    position: absolute;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    background: none;
    border: none;
    opacity: 1;
    color: #fff;
}

.hero-carousel .carousel-control-prev { left: 20px; }
.hero-carousel .carousel-control-next { right: 20px; }

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    transform: translateY(-50%); /* keep vertical centering intact on hover */
}

.hero-carousel .carousel-control-prev svg,
.hero-carousel .carousel-control-next svg {
    opacity: 0.85;
    transition: opacity 0.25s ease, transform 0.25s ease;
    filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.4));
}

.hero-carousel .carousel-control-prev:hover svg,
.hero-carousel .carousel-control-next:hover svg {
    opacity: 1;
}

.hero-carousel .carousel-control-prev:hover svg {
    transform: translateX(-4px);
}

.hero-carousel .carousel-control-next:hover svg {
    transform: translateX(4px);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- COLLECTIONS GRID --- */
.section-title {
    text-align: center;
    margin: 60px 0 40px;
}

.section-title h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 40px;
    margin-bottom: 80px;
}

.product-card {
    text-align: center;
    cursor: pointer;
}

.product-image-wrap {
    position: relative;
    overflow: hidden;
}

.product-image {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.product-image.active {
    opacity: 1;
    position: relative;
}

.product-image-wrap:hover .product-image.active {
    opacity: 0.85;
    transform: scale(1.03);
}

.mini-arrow {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image-wrap:hover .mini-arrow {
    opacity: 1;
}

.product-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 15px;
}

.product-info h4 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bolder;
}

.product-info p {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* --- IMAGE PREVIEW MODAL --- */
.iv-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.iv-backdrop.open {
    display: flex;
    opacity: 1;
}

.iv-box {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: #fff;
    padding: 16px;
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.iv-backdrop.open .iv-box {
    transform: scale(1);
}

.iv-img-wrap {
    position: relative;
    width: 480px;
    max-width: 80vw;
    height: 620px;
    max-height: 70vh;
    overflow: hidden;
    background: #f2f2f2;
}

.iv-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.iv-img.active {
    opacity: 1;
}

.iv-name {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 600;
}

.iv-price {
    font-size: 14px;
    color: #555;
}

.iv-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    line-height: 32px;
}

.iv-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 16px;
    z-index: 2;
}

.iv-prev { left: 8px; }
.iv-next { right: 8px; }

/* --- NEWSLETTER TICKER --- */
.ticker-wrap {
    width: 100%;
    background-color: #f5f5f5;
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.ticker-move {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 20s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    color: #333;
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

.ticker-wrap:hover .ticker-move {
    animation-play-state: paused;
}

/* --- FOOTER --- */
footer {
    background-color: #f9f9f9;
    padding: 60px 40px;
    border-top: 1px solid #eaeaea;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: #555;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

/* --- CONTACT PAGE --- */
.contact-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
}

.info-item {
    margin-bottom: 20px;
}

.info-item h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
}

.contact-form button {
    padding: 15px 40px;
    background-color: black;
    color: white;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #333;
}

.btn-shop:hover {
    background-color: transparent;
    color: white;
}

/* ==========================================================
   RESPONSIVE — arrows only change SIZE/SPACING here, never
   top/transform, so vertical centering never breaks.
   ========================================================== */

@media (max-width: 900px) {
    header { padding: 22px 24px; }
    .hero { min-height: 520px; height: 80vh; }
    .hero-carousel .carousel-item img,
    .hero-carousel img { height: clamp(420px, 80vh, 700px); }
    .section-title { margin: 50px 0 30px; }
    .footer { padding: 50px 24px; }
    .footer-container { gap: 28px; }
}

@media (max-width: 768px) {
    header { padding: 18px 18px; }
    .logo { font-size: 26px; }
    .icons i { margin-left: 14px; font-size: 16px; }
    .mobile-menu i { font-size: 22px; }

    .hero { min-height: 480px; height: 72vh; }
    .hero-carousel .carousel-item img,
    .hero-carousel img { height: clamp(360px, 72vh, 600px); }

    .header-top {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 10px;
        padding: 0 16px;
    }

    .logo { justify-self: center; font-size: 28px; }

    .mobile-menu { display: block; position: relative; left: auto; }

    .icons { position: relative; right: auto; justify-self: end; display: flex; gap: 15px; }

    .nav-menu { display: none; width: 100%; margin-top: 10px; }
    .nav-menu.open { display: block; }
    .nav-menu ul { flex-direction: column; gap: 12px; padding: 12px 0; justify-content: center; }
    .nav-menu li a { padding: 10px 0; font-size: 13px; }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 38px;
        height: 38px;
    }
    .hero-carousel .carousel-control-prev { left: 12px; }
    .hero-carousel .carousel-control-next { right: 12px; }
    .hero-carousel .carousel-control-prev svg,
    .hero-carousel .carousel-control-next svg {
        width: 16px;
        height: 16px;
    }/* --- RESET & BASICS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- ANNOUNCEMENT BAR --- */
.top-bar {
    background-color: #f5f5f5;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* --- HEADER & NAV --- */
header {
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
}

.nav-menu ul li a {
    position: relative;
    padding-bottom: 6px;
    text-decoration: none;
}

.nav-menu ul li a.active {
    color: #000;
}

.nav-menu ul li a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
}

.header-top {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    margin: 0 auto;
}

.icons {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
}

.icons i {
    margin-left: 20px;
    font-size: 18px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    cursor: pointer;
    position: absolute;
    left: 0;
}

.nav-menu {
    display: block;
    width: 100%;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.nav-menu li a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.nav-menu li a:hover {
    color: #888;
}

/* --- HERO / CAROUSEL --- */
.hero {
    min-height: 650px;
    height: 85vh;
    max-height: 900px;
    overflow: hidden;
}

.hero-carousel {
    position: relative; /* anchors the absolutely-positioned arrows to the carousel, not the page */
}

.hero-carousel .carousel-item img,
.hero-carousel img {
    width: 100%;
    height: clamp(600px, 85vh, 900px);
    object-fit: cover;
    object-position: center 20%; /* keeps faces in frame instead of cropping from center */
}

/* Prev / Next arrows — vertically centered on ALL devices via base rule.
   Media queries below only change size/spacing, never top/transform. */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    position: absolute;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    background: none;
    border: none;
    opacity: 1;
    color: #fff;
}

.hero-carousel .carousel-control-prev { left: 20px; }
.hero-carousel .carousel-control-next { right: 20px; }

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    transform: translateY(-50%); /* keep vertical centering intact on hover */
}

.hero-carousel .carousel-control-prev svg,
.hero-carousel .carousel-control-next svg {
    opacity: 0.85;
    transition: opacity 0.25s ease, transform 0.25s ease;
    filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.4));
}

.hero-carousel .carousel-control-prev:hover svg,
.hero-carousel .carousel-control-next:hover svg {
    opacity: 1;
}

.hero-carousel .carousel-control-prev:hover svg {
    transform: translateX(-4px);
}

.hero-carousel .carousel-control-next:hover svg {
    transform: translateX(4px);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- COLLECTIONS GRID --- */
.section-title {
    text-align: center;
    margin: 60px 0 40px;
}

.section-title h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 40px;
    margin-bottom: 80px;
}

.product-card {
    text-align: center;
    cursor: pointer;
}

.product-image-wrap {
    position: relative;
    overflow: hidden;
}

.product-image {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.product-image.active {
    opacity: 1;
    position: relative;
}

.product-image-wrap:hover .product-image.active {
    opacity: 0.85;
    transform: scale(1.03);
}

.mini-arrow {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image-wrap:hover .mini-arrow {
    opacity: 1;
}

.product-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 15px;
}

.product-info h4 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bolder;
}

.product-info p {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* --- IMAGE PREVIEW MODAL --- */
.iv-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.iv-backdrop.open {
    display: flex;
    opacity: 1;
}

.iv-box {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: #fff;
    padding: 16px;
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.iv-backdrop.open .iv-box {
    transform: scale(1);
}

.iv-img-wrap {
    position: relative;
    width: 480px;
    max-width: 80vw;
    height: 620px;
    max-height: 70vh;
    overflow: hidden;
    background: #f2f2f2;
}

.iv-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.iv-img.active {
    opacity: 1;
}

.iv-name {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 600;
}

.iv-price {
    font-size: 14px;
    color: #555;
}

.iv-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    line-height: 32px;
}

.iv-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 16px;
    z-index: 2;
}

.iv-prev { left: 8px; }
.iv-next { right: 8px; }

/* --- NEWSLETTER TICKER --- */
.ticker-wrap {
    width: 100%;
    background-color: #f5f5f5;
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.ticker-move {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 20s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    color: #333;
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

.ticker-wrap:hover .ticker-move {
    animation-play-state: paused;
}

/* --- FOOTER --- */
footer {
    background-color: #f9f9f9;
    padding: 60px 40px;
    border-top: 1px solid #eaeaea;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: #555;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

/* --- CONTACT PAGE --- */
.contact-section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
}

.info-item {
    margin-bottom: 20px;
}

.info-item h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
}

.contact-form button {
    padding: 15px 40px;
    background-color: black;
    color: white;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #333;
}

.btn-shop:hover {
    background-color: transparent;
    color: white;
}

/* ==========================================================
   RESPONSIVE — arrows only change SIZE/SPACING here, never
   top/transform, so vertical centering never breaks.
   ========================================================== */

@media (max-width: 900px) {
    header { padding: 22px 24px; }
    .hero { min-height: 520px; height: 80vh; }
    .hero-carousel .carousel-item img,
    .hero-carousel img { height: clamp(420px, 80vh, 700px); }
    .section-title { margin: 50px 0 30px; }
    .footer { padding: 50px 24px; }
    .footer-container { gap: 28px; }
}

@media (max-width: 768px) {
    header { padding: 18px 18px; }
    .logo { font-size: 26px; }
    .icons i { margin-left: 14px; font-size: 16px; }
    .mobile-menu i { font-size: 22px; }

    .hero { min-height: 480px; height: 72vh; }
    .hero-carousel .carousel-item img,
    .hero-carousel img { height: clamp(360px, 72vh, 600px); }

    .header-top {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 10px;
        padding: 0 16px;
    }

    .logo { justify-self: center; font-size: 28px; }

    .mobile-menu { display: block; position: relative; left: auto; }

    .icons { position: relative; right: auto; justify-self: end; display: flex; gap: 15px; }

    .nav-menu { display: none; width: 100%; margin-top: 10px; }
    .nav-menu.open { display: block; }
    .nav-menu ul { flex-direction: column; gap: 12px; padding: 12px 0; justify-content: center; }
    .nav-menu li a { padding: 10px 0; font-size: 13px; }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 38px;
        height: 38px;
    }
    .hero-carousel .carousel-control-prev { left: 12px; }
    .hero-carousel .carousel-control-next { right: 12px; }
    .hero-carousel .carousel-control-prev svg,
    .hero-carousel .carousel-control-next svg {
        width: 16px;
        height: 16px;
    }

    .section-title { margin: 45px 0 28px; }
    .product-grid.static-grid, .footer-container { padding: 0 16px; }
    .footer-container { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
    .header-top { padding: 0 12px; }
    .logo { font-size: 24px; }
    .hero { min-height: 460px; height: 65vh; }
    .hero-carousel .carousel-item img,
    .hero-carousel img { height: clamp(320px, 65vh, 500px); }
}

@media (max-width: 480px) {
    header { padding: 16px 12px; }
    .header-top { gap: 8px; }
    .logo { font-size: 15px; letter-spacing: 1px; }
    .icons i { margin-left: 12px; font-size: 15px; }

    .hero { min-height: 420px; height: 58vh; }
    .hero-carousel .carousel-item img,
    .hero-carousel img { height: clamp(400px, 1000vh, 465px); }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 32px;
        height: 32px;
    }
    .hero-carousel .carousel-control-prev { left: 8px; }
    .hero-carousel .carousel-control-next { right: 8px; }

    .nav-menu ul { gap: 10px; }
    .footer { padding: 32px 14px; }
    .footer-container { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 360px) {
    .header-top { gap: 6px; }
    .logo { font-size: 14px; }
    .icons i { font-size: 15px; margin-left: 10px; }
    .hero { min-height: 400px; height: 55vh; }
    .hero-carousel .carousel-item img,
    .hero-carousel img { height: clamp(400px, 1000vh, 400px); }
}

    .section-title { margin: 45px 0 28px; }
    .product-grid.static-grid, .footer-container { padding: 0 16px; }
    .footer-container { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
    .header-top { padding: 0 12px; }
    .logo { font-size: 24px; }
    .hero { min-height: 460px; height: 65vh; }
    .hero-carousel .carousel-item img,
    .hero-carousel img { height: clamp(320px, 65vh, 500px); }
}

@media (max-width: 480px) {
    header { padding: 16px 12px; }
    .header-top { gap: 8px; }
    .logo { font-size: 15px; letter-spacing: 1px; }
    .icons i { margin-left: 12px; font-size: 15px; }

    .hero { min-height: 420px; height: 58vh; }
    .hero-carousel .carousel-item img,
    .hero-carousel img { height: clamp(400px, 1000vh, 465px); }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 32px;
        height: 32px;
    }
    .hero-carousel .carousel-control-prev { left: 8px; }
    .hero-carousel .carousel-control-next { right: 8px; }

    .nav-menu ul { gap: 10px; }
    .footer { padding: 32px 14px; }
    .footer-container { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 360px) {
    .header-top { gap: 6px; }
    .logo { font-size: 11px; }
    .icons i { font-size: 15px; margin-left: 10px; }
    .hero { min-height: 400px; height: 55vh; }
    .hero-carousel .carousel-item img,
    .hero-carousel img { height: clamp(400px, 1000vh, 400px); }
}
/* --- DESKTOP ONLY: auto-fit image, no cropping --- */
@media (min-width: 901px) {
  .hero {
    height: auto;
    max-height: none;
    min-height: unset;
  }

  .hero-carousel .carousel-item img,
  .hero-carousel img {
    width: 100%;
    height: clamp(600px, 80vh, 850px);
    object-fit: cover;
    object-position: center 12%;
  }
}