﻿body {
    background-color: #ece9e9;
}

.category-card, .region-card, .offer-card {
    min-height: 200px;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
}

    .category-card img, .region-card img, .offer-card img {
        width: 100%;
        height: auto;
    }

    .category-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .category-card .card-inner {
        height: 200px; /* or any height you prefer */
    }

.hero-carousel img {
    max-height: 400px;
    object-fit: cover;
}

.category-card {
    width: 200px;
    flex-shrink: 0;
}

    .category-card .card-inner {
        height: 260px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .category-card img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

.section-title {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.scroll-section {
    overflow-x: auto;
    white-space: nowrap;
}

    .scroll-section .card {
        display: inline-block;
        width: 250px;
        margin-right: 1rem;
    }

    .scroll-section::-webkit-scrollbar {
        display: none;
    }

.card-body p {
    font-size: 0.9rem;
}

.custom-video {
    height: 520px; /* Adjust height as needed */
}

.top-selling-card {
    width: 200px;
    height: 260px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #fce4ec; /* soft pink or change as needed */
}

    .top-selling-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 8px;
    }

.spacer {
    height: 30px; /* Adjust height as needed */
    width: 100%;
}

.gift-section {
    padding: 20px;
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
}

    .gift-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

.gift-carousel-wrapper {
    position: relative;
}

.gift-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 0;
}

.gift-card {
    min-width: 200px;
    flex: 0 0 auto;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-align: center;
}

    .gift-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 4px 4px 0 0;
    }

.gift-description {
    padding: 10px;
    font-size: 14px;
}

.arrow-btn {
    position: absolute;
    top: 40%;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
    border-radius: 50%;
    opacity: 0.6;
    transition: opacity 0.3s;
}


    .arrow-btn:hover {
        opacity: 1;
    }

.arrow-left {
    left: -10px;
}

.arrow-right {
    right: -10px;
}

.look-section {
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    position: relative;
}

    .look-section h2 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .look-section p {
        color: #555;
        margin-bottom: 20px;
    }

.look-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.look-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding-bottom: 8px;
}

    .look-carousel::-webkit-scrollbar {
        height: 4px;
    }

    .look-carousel::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 2px;
    }

.look-card {
    flex: 0 0 auto;
    width: 300px;
    border-radius: 8px;
    overflow: hidden;
}

    .look-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.arrow-btn-look {
    position: absolute;
    top: 40%;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px;
    opacity: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.arrow-left-look {
    left: 10px;
}

.arrow-right-look {
    right: 10px;
}

.look-carousel-wrapper:hover .arrow-btn-look {
    opacity: 0.6;
}

.arrow-btn-look:hover {
    opacity: 1;
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    height: 800px; /* 🔽 Reduce this value as needed */
}

.featured-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

    /* .featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
  } */
    .featured-card img {
        width: 100%;
        aspect-ratio: 3 / 2; /* Or use 16/9, depending on design */
        object-fit: cover;
        border-radius: 8px;
        display: block;
    }

.featured-text {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    color: white;
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    font-size: 16px;
}

/* Grid positions */
.big-left {
    grid-row: 1 / span 2;
    grid-column: 1 / 2;
}

.small-top-right {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}

.tall-top-right {
    grid-row: 1 / 2;
    grid-column: 3 / 4;
}

.tall-bottom-left {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
}

.small-bottom-right {
    grid-row: 2 / 3;
    grid-column: 3 / 4;
}



.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 10px;
    padding: 10px;
}

.item {
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

.video {
    grid-row: span 2;
    grid-column: 1;
}

    .video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.img1 {
    grid-column: 2;
    grid-row: 1;
}

.img2 {
    grid-column: 3;
    grid-row: 1;
}

.img3 {
    grid-column: 2;
    grid-row: 2;
}

.offer {
    grid-column: 3;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffe0b3;
}

.offer-card {
    padding: 20px;
    text-align: center;
    font-weight: bold;
}

/*img {
    width: 100%;
    display: block;
}*/

.promo-card {
    position: relative;
    color: white;
    height: 100%;
    overflow: hidden;
    border-radius: 0.5rem;
}

    .promo-card img,
    .promo-card video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.promo-content {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 1rem;
    border-radius: 0.5rem;
}

.yellow-box {
    background-color: #ffd500;
    color: #000;
    padding: 1.5rem;
    border-radius: 0.5rem;
    height: 100%;
}

.promo-content a {
    color: white;
    font-weight: bold;
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .video {
        grid-column: span 2;
        grid-row: auto;
        height: auto;
    }

    .img1, .img2, .img3, .offer {
        grid-column: auto;
        grid-row: auto;
    }
}

.parallax-section {
    background-image: url('/attachments/images/backgim.jpg'); 
    height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.parallax-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
}

/* Fallback for mobile: disable fixed attachment */
@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }
}

.full-image-banner {
    background-image: url('https://static.wixstatic.com/media/a96214_87a25eabe1bf4d7b90082cb73ab12b49~mv2.jpg/v1/fill/w_1560,h_712,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/a96214_87a25eabe1bf4d7b90082cb73ab12b49~mv2.jpg'); /* Replace with your image */
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-text {
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    padding: 1.5rem 2rem;
    border-radius: 8px;
}

    .banner-text h2 {
        font-size: 2rem;
        margin: 0;
    }

    .banner-text p {
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }


/* Responsive for smaller screens */
@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .big-left,
    .small-top-right,
    .tall-top-right,
    .tall-bottom-left,
    .small-bottom-right {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

@media (max-width: 767.98px) {
    .custom-video {
        height: auto; /* Let mobile revert to normal */
    }

    .hero-carousel .carousel-inner {
        height: 200px;
    }

    .hero-carousel .carousel-item {
        height: 100%;
    }

    .hero-carousel .carousel-inner img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

.top-selling-card {
    width: 200px;
    background: none;
    border: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .top-selling-card .image-container {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }

    .top-selling-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .top-selling-card .caption {
        font-size: 0.85rem;
        font-weight: 600;
        margin-top: 0.5rem;
    }

.desktop-logo {
    width: 265px;
    height: auto;
    background-color: transparent;
    mix-blend-mode: multiply;
    display: block;
    margin-left: 0;
    margin-right: auto;
    max-width: 100%;
}
