/* assets/css/style.css */
.jumbotron{background:linear-gradient(90deg,#ffd89b,#19547b);color:#111;border-radius:8px;}
.card-title{font-size:1.05rem;}
/* ----------------------------------------------
   PREMIUM NAVBAR FULL STYLE (LIGHT + LUXURY)
----------------------------------------------- */

/* Sticky navbar with blur + gradient */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(135deg, #ffffffdd, #f5f7ffdd) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  padding: 10px 0 !important;
  transition: all 0.3s ease;
}

/* Shrink on scroll (Zara style) */
.navbar.shrink {
  padding: 4px 0 !important;
  background: rgba(255,255,255,0.92) !important;
  backdrop-filter: blur(16px);
}

/* ------------------------------
   NAV-LINK STYLING (Premium)
------------------------------- */

.nav-link {
  font-size: 17px;
  font-weight: 600;
  padding: 8px 14px !important;
  color: #202020 !important;
  position: relative;
  border-radius: 10px;
  transition: 0.25s ease-in-out;
}

/* Hover glow */
.nav-link:hover {
  color: #000 !important;
  text-shadow: 0 0 6px rgba(0,0,0,0.2);
}

/* Soft underline animation */

/* Remove ACTIVE effect for Category only */
.nav-link.category-link.active::after,
.nav-link.category-link.active::before {
  display: none !important;
}

.nav-link.category-link.active {
  background: transparent !important;
  color: #202020 !important;
}

/* ------------------------------
   LOGO
------------------------------- */

.navbar-brand img {
  height: 50px;
  transition: 0.2s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

/* ------------------------------
   ICONS (Account + Cart)
------------------------------- */

.navbar i {
  color: #202020 !important;
  font-size: 20px;
  padding: 8px;
  border-radius: 10px;
  transition: 0.25s ease;
}

.navbar i:hover {
  background: #111;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
/* ================= FIX MEGA MENU ALIGNMENT ================= */

.dropdown-menu.mega-menu {
    width: 700px !important;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff !important;
}

/* Align columns horizontally */
.dropdown-menu.mega-menu .row {
    display: flex !important;
    justify-content: space-between !important;
    gap: 30px;
}

/* Fix columns width */
.dropdown-menu.mega-menu .col-md-4 {
    width: 30% !important;
    text-align: left !important;
}

/* Category Titles */
.dropdown-menu.mega-menu h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0d6efd;
    text-align: left !important;
}

/* Sub-items styling */
.dropdown-menu .dropdown-item {
    font-size: 15px;
    padding: 5px 0 !important;
    display: block !important;
    text-align: left !important;
    border-radius: 6px;
}

/* Hover effect */
.dropdown-menu .dropdown-item:hover {
    background: #000 !important;
    color: #fff !important;
}

/* Ensure dropdown opens properly */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}
.shop-category-strip .circle-icon {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  padding: 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.shop-category-strip .circle-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-category-strip a:hover .circle-icon {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.cat-label {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
}

/* MOBILE FIX */
@media(max-width: 992px) {
    .dropdown-menu.mega-menu {
        width: 100% !important;
    }
    .dropdown-menu.mega-menu .col-md-4 {
        width: 100% !important;
        margin-bottom: 15px;
        text-align: center !important;
    }
    .dropdown-menu.mega-menu h6,
    .dropdown-menu .dropdown-item {
        text-align: center !important;
    }
}

/* ----------------------------------------------
   MEGA MENU CENTER ALIGN FIX (FINAL WORKING)
----------------------------------------------- */

/* Make full mega menu centered */
.dropdown-menu.mega-menu .row {
    justify-content: center !important;
    text-align: center !important;
}

/* Center each column content */
.dropdown-menu.mega-menu .col-md-4 {
    text-align: center !important;
}

/* Center category titles */
.dropdown-menu.mega-menu h6 {
    width: 100%;
    text-align: center !important;
}

/* Center sub-items properly (flex fix) */
.dropdown-menu.mega-menu .dropdown-item {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding-left: 0 !important; /* remove left offset */
}

/* Remove hover left shift */
.dropdown-menu.mega-menu .dropdown-item:hover {
    padding-left: 0 !important;
}


/* SLIDER HEIGHT */
.slider-img {
  height: 550px;
  object-fit: cover;
}

/* INDICATOR DOTS */
.carousel-indicators button {
  width: 10px;
  height: 10px;
  background-color: #aaa;
  border-radius: 50%;
  margin: 5px;
  opacity: 0.7;
  transition: 0.3s;
}

.carousel-indicators .active {
  background-color: #111;
  width: 12px;
  height: 12px;
  opacity: 1;
}

/* ARROWS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* SMOOTH FADE TRANSITION */
.carousel-fade .carousel-item {
  transition: opacity 1s ease-in-out;
}

/* ----------------------------------------------------
   PREMIUM FASHION SLIDER DESIGN (GUCCI / ZARA STYLE)
---------------------------------------------------- */

.home {
    padding: 0;
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}

/* SLIDE CONTAINER */
.home .slide {
    text-align: center;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: left;
    background-size: cover !important;
    background-position: center !important;
    height: 85vh;
    position: relative;
}

/* DARK GRADIENT OVERLAY FOR TEXT READABILITY */
.home .slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.65));
    z-index: 0;
}

/* TEXT BOX */
.home .slide .content {
    position: relative;
    z-index: 2;
    width: 70%;
    max-width: 750px;
    display: none;
}

/* SHOW CONTENT ONLY ON ACTIVE SLIDE */
.home .swiper-slide-active .content {
    display: block;
}

/* SUBTITLE */
.home .slide .content span {
    display: block;
    font-size: 2rem;
    color: #f0f0f0;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    animation: fadeIn .4s linear backwards .2s;
}

/* MAIN HEADLINE */
.home .slide .content h3 {
    font-size: 4.5vw;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 0 3px 25px rgba(0,0,0,0.4);
    margin-bottom: 1.5rem;
    animation: fadeIn .4s linear backwards .4s;
}


.home .slide .content .btn {
    animation: fadeIn .4s linear backwards .6s;
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.1rem;
    background: #000;
    color: #f0f3ff;
    border-radius: 5px;
    transition: 0.3s;
}

.home .slide .content .btn:hover {
    background:transparent ;
    color:white ;
    border: 1px solid;
}

/* NEXT / PREV BUTTONS */
.home .swiper-button-next,
.home .swiper-button-prev {
    bottom: 20px;
    top: auto;
    height: 55px;
    width: 55px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: #000;
    transition: 0.3s;
}

.home .swiper-button-next:hover,
.home .swiper-button-prev:hover {
    background: #000;
    color: #fff;
}

.home .swiper-button-next::after,
.home .swiper-button-prev::after {
    font-size: 20px;
}

.home .swiper-button-prev {
    left: auto;
    right: 85px;
}

/* PAGINATION DOTS */
.swiper-pagination-bullet {
    height: 10px !important;
    width: 10px !important;
    background: rgba(255,255,255,0.7) !important;
    opacity: 1 !important;
    margin: 6px !important;
    transition: 0.3s;
}

.swiper-pagination-bullet-active {
    background: #ffffff !important;
    width: 14px !important;
    height: 14px !important;
}

/* FADE-IN ANIMATION */
@keyframes fadeIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* behind text */
}

/* .logo-fixed {
    height: 45px;
    transition: 0.2s ease;
}

/* Very small screens */
/*@media(max-width: 400px) {
    .logo-fixed {
        height: 38px;
    }
} */
/* Box design */
.hero-box {
    background: linear-gradient(90deg, #ffd89b, #19547b);
    color: #000;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-in-out;
}

/* Title fade-up */
.hero-title {
    animation: fadeUp 0.8s ease forwards;
}

/* Subtitle fade later */
.hero-subtitle {
    animation: fadeUp 1.2s ease forwards;
    opacity: 0;
}

/* Floating image */
.floating-img {
    width: 280px;
    max-width: 90%;
    animation: floatAnim 3s ease-in-out infinite;
}

/* Fade in */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Fade up */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Floating effect */
@keyframes floatAnim {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsive alignment */
.hero-content {
    max-width: 600px;
}

.hero-image {
    animation: fadeIn 1.2s ease;
}

/* ============ CUSTOM DESIGN FULL HERO ============ */

.custom-hero {
    /* height: 100vh; */
    min-height: 100vh;
    width: 100%;
    position: relative;
    padding: 0;
    background: linear-gradient(135deg, #ffffff, #f0f3ff);
    display: flex;
    align-items: center;
}

/* left slideshow */
.custom-slider {
    position: relative;
    height: 70vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.model-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease-in-out;
    opacity: 0;
}

.model-img.active {
    opacity: 1;
}

/* right content */
.custom-content {
    padding-left: 40px;
}

.custom-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.custom-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

/* feature icons row */
.custom-feature-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.feature-box h5 {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #333;
}

/* premium button */
.custom-btn {
    background: #000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: 0.3s;
}

.custom-btn:hover {
    color: #000;
    background: #fff;
    border: 1px solid;
}
.model-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= NEW ARRIVALS CIRCLES ================= */

.new-arrivals {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.arrival-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: 0.4s ease;
}

.arrival-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.arrival-circle:hover img {
    transform: scale(1.1);
}

.arrival-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 10px;
    color: #222;
}

/* ================= HASHTAG GALLERY ================= */

.hashtag-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.gallery-box {
    width: 100%;
    aspect-ratio: 1 / 1; /* Makes perfect square */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.gallery-box:hover img {
    transform: scale(1.1);
}
.section-title {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.product-card {
    cursor: pointer;
}

.product-img {
    width: 100%;
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #f7f7f7;
}

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

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

/* BEST SELLER Badge */
.p-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #6b572a;
    color: #fff;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.p-name {
    font-size: 17px;
    font-weight: 500;
    min-height: 46px;
}

.p-price {
    font-size: 15px;
    margin-top: 5px;
}

.cut {
    color: #888;
    text-decoration: line-through;
    margin-left: 6px;
}
.product-link {
    text-decoration: none !important;
    color: inherit;
    display: block;
}

.product-card {
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}
/* ================= QUALITY & SUSTAINABILITY ================= */

.quality-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.quality-img img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.quality-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #111;
}

.quality-desc {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

/* Features List */
.quality-features {
    margin-top: 25px;
}

.q-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #222;
    font-weight: 500;
}

.q-feature i {
    font-size: 1.6rem;
    color: #000;
    background: #f1f1f1;
    padding: 10px;
    border-radius: 50%;
}
/* ================= CUSTOMER REVIEWS ================= */

.reviews-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.10);
    transition: 0.3s;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
}

.review-name {
    font-size: 1.1rem;
    font-weight: 600;
}

.review-stars {
    color: #f4b400;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}
/* ================= BRAND STORY SECTION ================= */

.brand-story {
    padding-top: 80px;
    padding-bottom: 80px;
}

.brand-img img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.brand-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 1px;
}

.brand-text {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}
/* ================= FEATURED CATEGORIES ================= */

.featured-categories .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.fc-card {
    display: block;
    text-decoration: none;
    color: #000;
}

.fc-img {
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 10px;
}

.fc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

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

.fc-badge {
    background: #4a4a4a;
    color: #fff;
    padding: 3px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
    margin-top: 8px;
    display: inline-block;
}

.fc-title {
    margin-top: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.fc-price {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.fc-price span {
    text-decoration: line-through;
    color: #777;
    margin-left: 5px;
}

/* VIEW ALL BUTTON */
.fc-viewall-btn {
    background: #000;
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 1rem;
    text-decoration: none;
    transition: 0.3s ease;
}

.fc-viewall-btn:hover {
    background: #333;
}
/* ======================= FOOTER ======================= */

.fashion-footer {
    background: #f1f3eb;
    color: #000;
    font-size: 0.95rem;
}

.footer-logo img {
    width: 160px;
}

.footer-about {
    color: #000;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.1rem;
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #000;
    padding-left: 10px;
}

.footer-social a {
    font-size: 1.3rem;
    color: #000;
    margin-right: 12px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: #060606;
}

.footer-divider {
    border-color: #000;
    margin-top: 30px;
}

.footer-bottom p {
    color: #000000;
    font-weight: bolder;
    font-size: 1rem;
}
/* FEATURED PRODUCTS HORIZONTAL SCROLL ON MOBILE */
.featured-row {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.featured-row .col-8 {
    scroll-snap-align: start;
    min-width: 75% !important; /* card width on mobile */
}
.category-hero {
    position: relative;
    width: 100%;
    height: 80vh; /* Desktop height */
}

.category-hero .hero-bg {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: relative;
}

.category-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.55));
}

.category-hero .hero-content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.category-hero .hero-title {
    color: white;
    font-size: 3rem;
    font-weight: 600;
    text-transform: capitalize;
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .category-hero {
        height: 60vh;
    }
    .category-hero .hero-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 576px) {
    .category-hero {
        height: 45vh;
    }
    .category-hero .hero-title {
        font-size: 1.8rem;
    }
}
.product-card img.product-image {
    width: 100%;
    border-radius: 4px;
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

.product-price {
    font-weight: bold;
    color: #000;
    font-size: 15px;
}

.product-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #a38a56;
    padding: 4px 10px;
    font-size: 12px;
    color: white;
    border-radius: 3px;
}

.color-thumb {
    width: 38px;
    height: 48px;
    border-radius: 3px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
}

.color-thumb.active {
    border-color: #000;
}


/* =========================================================
   RESPONSIVE DESIGN – FULL HOMEPAGE OPTIMIZED & MERGED
========================================================= */

/* ---------- TABLETS & ABOVE (≤ 992px) ---------- */
/* ----------------------------------------------
   MOBILE MEGA MENU SCROLL FIX (UPDATED)
----------------------------------------------- */

@media (max-width: 992px) {

    /* Increase scroll height */
    .dropdown-menu.mega-menu {
        max-height: 55vh !important;  /* increased from 60vh */
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }

    /* Column full width on mobile */
    .dropdown-menu.mega-menu .col-md-4 {
        width: 100% !important;
        margin-bottom: 20px;
        text-align: center !important;
    }

    /* No body scroll conflict */
    .dropdown.show {
        position: static !important;
    }

    /* Scrollbar styling */
    .dropdown-menu.mega-menu::-webkit-scrollbar {
        width: 8px; /* slightly bigger for touch devices */
    }
    .dropdown-menu.mega-menu::-webkit-scrollbar-thumb {
        background: #000;
        border-radius: 10px;
    }
    .dropdown-menu.mega-menu::-webkit-scrollbar-track {
        background: rgba(0,0,0,0.1);
    }
}


/* ---------- TABLETS & SMALL DEVICES (≤ 768px) ---------- */
@media (max-width: 768px) {

    /* Global spacing reduction */
    .brand-story,
    .reviews-section,
    .featured-categories,
    .new-arrivals,
    .hashtag-gallery,
    .quality-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    /* Section titles */
    .section-title,
    .reviews-title,
    .hashtag-title {
        font-size: 1.8rem;
    }

    /* Brand story text */
    .brand-title {
        font-size: 1.9rem;
    }

    .brand-text {
        font-size: 1rem;
    }

    .brand-img {
        margin-bottom: 25px;
    }

    /* Reviews */
    .reviews-title {
        font-size: 1.8rem;
    }

    /* Quality section */
    .quality-title {
        font-size: 1.8rem;
    }

    .q-feature {
        font-size: 1rem;
    }

    /* Hero slider smaller height */
    .home .slide {
        height: 70vh;
    }

    .home .slide .content span {
        font-size: 1.4rem;
    }

    .home .slide .content h3 {
        font-size: 7vw;
    }

    /* Custom hero content center */
    .custom-content {
        padding-left: 0;
        text-align: center;
        margin-top: 25px;
    }

    .custom-title {
        font-size: 2rem;
    }

    .custom-subtitle {
        font-size: 1rem;
    }

    .custom-feature-grid {
        justify-content: center;
        gap: 20px;
    }

    /* Featured category card height */
    .fc-img {
        height: 260px;
    }

    /* Product image reduction */
    .product-img {
        height: 350px;
    }

    /* Arrivals circle shrink */
    .arrival-circle {
        width: 140px;
        height: 140px;
    }

    /* Review cards alignment */
    .review-card {
        text-align: left;
    }
}

/* ================= MOBILE PRODUCT GRID (2 PER ROW) ================= */
@media (max-width: 576px) {

  .featured-products .col-6,
  .featured-products .col-sm-6,
  .featured-products .col-md-3 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .product-img {
    height: 220px !important;
  }

  .p-name {
    font-size: 14px;
    min-height: auto;
  }

  .p-price {
    font-size: 14px;
  }
}

/* ---------- EXTRA SMALL PHONES (≤ 576px) ---------- */
@media (max-width: 576px) {

    /* Hero */
    .home .slide {
        height: 60vh;
        padding: 1.25rem;
    }

    .home .slide .content span {
        font-size: 1.2rem;
    }

    .home .slide .content h3 {
        font-size: 7.5vw;
    }

    /* Featured card compact */
    .fc-img {
        height: 220px;
    }

    /* Product images */
    .product-img {
        height: 300px;
    }

    /* Reduce gallery spacing */
    .hashtag-gallery .row.g-4 {
        row-gap: 1.5rem !important;
    }
     .navbar .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}
/* For VERY big screens, add more spacing (optional) */
@media (min-width: 1400px) {
    .navbar .container {
        padding-left: 60px !important;
        padding-right: 60px !important;
    }
}

/* For mobile devices, slight padding */
@media (max-width: 576px) {
   
}
/* FIX OVERLAP FOR MOBILE */
@media (max-width: 768px) {
    .home {
        height: auto !important;
    }

    .home .swiper-slide {
        height: 65vh !important;
    }

    .custom-hero {
        margin-top: 40px !important; /* creates gap */
        height: auto !important;
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
}


@media (min-width: 768px) {
    .featured-row .col-md-3 {
        min-width: auto !important;
    }
}
/* ================= CUSTOM HERO – MOBILE RESPONSIVE ================= */

.custom-hero {
    min-height: auto;
    padding: 40px 0;
}

/* Slider container */
.custom-slider {
    height: 65vh;
    margin-bottom: 25px;
}

/* Model images */
.model-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Right content */
.custom-content {
    padding-left: 0;
    text-align: center;
}

/* Title */
.custom-title {
    font-size: 2.4rem;
}

/* Subtitle */
.custom-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Feature grid */
.custom-feature-grid {
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Feature icons */
.feature-icon {
    width: 90px;
    height: 90px;
}

/* Button */
.custom-btn {
    display: inline-block;
    margin-top: 15px;
}

/* ================= TABLET FIX ================= */
@media (max-width: 992px) {

    .custom-slider {
        height: 55vh;
    }

    .custom-title {
        font-size: 2.1rem;
    }

    .custom-subtitle {
        font-size: 1rem;
    }
}

/* ================= MOBILE VIEW (IMPORTANT) ================= */
@media (max-width: 768px) {

    .custom-hero {
        padding: 25px 0;
    }

    .custom-slider {
        height: 45vh;
    }

    .custom-feature-grid {
        gap: 18px;
    }

    .feature-icon {
        width: 75px;
        height: 75px;
    }

    .custom-title {
        font-size: 1.8rem;
    }

    .custom-subtitle {
        font-size: 0.95rem;
    }
}

/* ================= SMALL PHONES ================= */
@media (max-width: 576px) {

    .custom-slider {
        height: 38vh;
    }

    .custom-title {
        font-size: 1.6rem;
    }

    .custom-subtitle {
        font-size: 0.9rem;
    }

    .custom-btn {
        width: 70%;
    }
}
