/* ====== Deal Of The Day ====== */
.section--deal {
    background: url('../images/generic/deal-bg.png') center center / cover no-repeat;
    padding: 1rem 0 1.5rem !important;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    background-size: 120%;
    background-position: 98% 0;
}

.deal::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 45, 62, 0.7);
    /* Dark overlay */
    z-index: 1;
}

.deal__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.deal__header {
    margin-bottom: 1rem;
    text-align: left;
}

.deal__title {
    font-family: var(--font-family-heading);
    font-size: 2.5rem;
    color: var(--bs-text-light);
    font-weight: var(--font-weight-normal);
}

.deal__subtitle {
    font-size: 1rem;
    margin-top: -0.5rem;
    color: var(--bs-text-light);
    font-weight: 600;
}

.deal__products {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 8rem 1rem 0;
    -webkit-overflow-scrolling: touch;
}

.deal__products::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar */
}

.deal__product-card {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 10rem;
    color: #000;
    overflow: hidden;
    scroll-snap-align: start;
    text-align: center;
}

.deal__product-image {
    width: 100%;
    /* height: 100%; */
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 0.5rem;
    border: 1px solid #8eceec;
}

.deal__product-info {
    padding: 0.5rem 0 2rem;
    text-align: left;
}

.deal__price {
    font-weight: 700;
    color: #0a2d3e;
    font-size: 1rem;
}

.deal__price-old {
    font-weight: 400;
    font-size: 0.875rem;
    color: #888;
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.deal__product-name {
    font-size: 0.8rem;
    line-height: 120%;
    color: #0030499e;
    margin-bottom: 0;
}

/* ====== Category Slider ====== */
.category-slider {
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    padding: 1rem 1rem 0.5rem 1rem;
    /* scroll-snap-type: x mandatory; */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: none;
}

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

.category-slider__item {
    flex: 0 0 auto;
    width: 100px;
    text-align: center;
    scroll-snap-align: start;
    width: 4.5rem;
}

.category-slider__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 6px;
}

.category-slider__label {
    font-size: var(--font-size-small);
    color: var(--primary-color);
    margin: 0;
}

/* ====== Hero Section ====== */
section.section--hero-carousel {
    padding-top: 0;
}

.hero {
    padding: 3rem 1rem;
}

.hero__subtitle {
    font-family: 'Ms Madi', cursive;
    font-size: clamp(2rem, 4vw + 1rem, 6rem);
    color: #697D88;
    font-weight: normal;
    position: relative;
    left: -2rem;
    line-height: 65%;
    animation-delay: 0.3s;
}

.hero__title {
    font-family: var(--font-family-heading);
    font-weight: 600;
    font-size: clamp(2rem, 4vw + 1rem, 6rem);
    line-height: 90%;
    color: #0a2d3e;
    margin-bottom: 1.5rem;
    animation-delay: 0.4s;
    animation-duration: 0.1s;
}

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

.section--hero-carousel .hero__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: unset;
}

.hero__text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
    animation-delay: 0.6s;
}

.hero__actions {
    animation-delay: 0.7s;
}

.hero__link {
    font-weight: 500;
    color: #0a2d3e;
    text-decoration: none;
    display: inline-block;
    align-self: center;
    transition: color 0.3s;
    font-size: var(--font-size-medium);
}

.hero__link:hover {
    color: #444;
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: unset;
}

.carousel-dark .carousel-indicators button {
    background-color: #003049;
    width: 1.5rem;
    opacity: .3 !important;
    margin-right: 4px;
    margin-left: 4px;
}

.carousel-dark .carousel-indicators button.active {
    opacity: 1 !important;
}

/* ====== Shop By Category Section ====== */
.category {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1.5rem;
}

.category__item {
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.category__item:nth-child(1) {
    grid-row: span 2 / span 2;
    aspect-ratio: 1 / 1;
}

.category__item:nth-child(3) {
    grid-column-start: 1;
    grid-row-start: 3;
    aspect-ratio: 2 / 1;
}

.category__item:nth-child(4) {
    grid-row: span 2 / span 2;
    grid-column-start: 2;
    grid-row-start: 2;
}

.category.category--alt .category__item:nth-child(1) {
    grid-area: 1 / 1 / 3 / 2;
}

.category.category--alt .category__item:nth-child(2) {
    grid-area: 1 / 2 / 2 / 4;
}

.category.category--alt .category__item:nth-child(3) {
    grid-area: 2 / 2 / 3 / 3;
}

.category.category--alt .category__item:nth-child(4) {
    grid-area: 2 / 3 / 3 / 4;
}

.category__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.overlay {
    position: relative;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    color: white;
    padding: 1.5rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
}

.overlay:hover {
    cursor: pointer;
}

.overlay__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.overlay h2 {
    margin: 0;
    font-size: clamp(1rem, 2vw + 1rem, 1.75rem);
    font-family: var(--font-family-heading);
    color: #ffffff;
    /* text-shadow: 0 1px 1px #00000065; */
}

.overlay p {
    margin: 0;
    font-size: 0.875rem !important;
    color: #ffffff;
    /* text-shadow: 0 1px 1px #00000065; */
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .item {
        aspect-ratio: 1 / 1;
    }
}

/* ====== Shop By Collection Mobile View Section ====== */
.section--shop-by-collection-mobile-view {
    padding: 4rem 1rem;
    background-color: #ffffff;
}

.collection__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #0a2d3e;
}

.collection__slider {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
}

.collection__card {
    background-color: #f9f9f9;
    border-radius: 0.5rem;
    overflow: hidden;
    text-align: center;
    position: relative;
    margin-bottom: 0.5rem;
    aspect-ratio: 1.5 / 2;
}

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

.collection__button {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0a2d3e;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.collection__button:hover {
    background-color: #06304e;
}

/* Slick Slider overrides */
.collection__slider .slick-list {
    overflow: visible;
}

.collection__slider .slick-slide {
    margin: 0 0.5rem;
    transition: transform 0.3s ease;
    opacity: 0.5;
}

/* .collection__slider .slick-center {
    transform: scale(1.05);
    opacity: 1;
} */

.collection__slider .collection__item {
    background-color: #fff;
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
}

/* ====== Curated Jewellery Selections Section ====== */
.carousel--curated-jewellery .card.card--product {
    margin: 0 0.75rem;
}

.carousel--curated-jewellery .carousel__item {
    max-width: calc(18rem + 1.5rem);
    box-sizing: border-box;
    opacity: 1 !important;
    visibility: visible !important;
}

.carousel--curated-jewellery .carousel__item figure.card__figure {
    /* aspect-ratio: 2/2.8 !important; */
    overflow: hidden;
    transition: var(--base-transition-fast);
}

/* .carousel--curated-jewellery .carousel__item:active figure.card__figure {
    transform: scale(0.97);
} */

.carousel--curated-jewellery .carousel__item img {
    transition: var(--base-transition);
}

.carousel--curated-jewellery .carousel__item:hover img {
    transform: scale(1.1);
    cursor: pointer;
}

.carousel--zigzag .carousel__item:nth-child(even) {
    margin-top: 3.75rem;
    /* animation: fade-In-Up 0.5s ease-out forwards; */
}

/* ====== Promotional Banners ====== */
.promotional-banner {
    position: relative;
    display: flex;
    align-items: center;
}

.promotional-banner--portrait {
    align-items: flex-end;
}

.promotional-banner--portrait.banner-overlay {
    position: relative;
}

.promotional-banner--portrait.banner-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgb(0 0 0 / 60%));
    z-index: 1;
}

.promotional-banner__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    position: relative;
    margin: 0;
    z-index: 1;
    overflow: hidden;
    aspect-ratio: 1.6 / 1;
}

.promotional-banner__image.promotional-banner__image--mobile {
    aspect-ratio: unset;
    height: auto;
    border-radius: 0.5rem;
    transform: scale(1);
}

.promotional-banner--portrait .promotional-banner__image {
    aspect-ratio: unset;
}

.promotional-banner__content {
    position: absolute;
    z-index: 2;
    padding: 2rem;
    width: 60%;
}

.promotional-banner--portrait .promotional-banner__content {
    width: 100%;
}

.promotional-banner__content .hero__subtitle {
    font-size: clamp(1rem, 3vw + 1rem, 3rem);
    left: 0;
    margin-bottom: 1rem;
}

.promotional-banner__content .hero__title {
    font-size: clamp(2rem, 3vw + 1rem, 2.5rem) !important;
    line-height: 90%;
    margin-bottom: 0.5rem;
}

.promotional-banner__content .hero__text {
    margin-bottom: 1rem;
}

.promotional-banner__content .hero__title span {
    font-size: clamp(1rem, 2vw + 1rem, 2rem);
}

.promotional-banner--portrait .promotional-banner__content .hero__title,
.promotional-banner--portrait .promotional-banner__content .hero__subtitle {
    color: var(--bs-text-light);
}

.promotional-banner--portrait .promotional-banner__content .hero__title {
    font-size: clamp(1rem, 2vw + 1rem, 3rem);
    line-height: 100%;
}

.promotional-banner--portrait .promotional-banner__content .hero__text {
    color: var(--bs-text-extra-light);
}

/* ====== Best Sellers ====== */

/* .section--best-seller .slick-list .slick-slide {
    margin: 0 0.75rem !important;
} */

.carousel--best-seller .carousel__item figure.card__figure {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    transition: var(--base-transition-fast);
}

.carousel--best-seller .card.card--product {
    margin: 0 0.75rem 2rem !important;
    pointer-events: auto;
}

.carousel--best-seller .slick-list {
    margin: 0 -0.75rem;
    /* Negative half margin to balance */
}

/* ====== Banner Custom Ring ====== */
.banner-custom-ring {
    display: flex;
    align-items: center;
    background: #F5F5F5;
}

.banner-custom-ring figure {
    width: 29%;
    flex-shrink: 0;
}

.banner-custom-ring figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.banner-custom-ring__content {
    width: -webkit-fill-available;
    padding: 2rem;
    position: relative;
    background: url(../images/banners/banner-bg-create-custom-ring.png) no-repeat 100% 100%;
    height: auto;
    background-size: 40%;
    display: flex;
    align-self: stretch;
}

.banner-custom-ring__content .promotional-banner__content {
    width: 70%;
    top: 50%;
    transform: translateY(-50%);
}

/* ====== Shop By Collection ====== */
.list--shop-by-collection {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1.5rem;
}

.collection--item-ring {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
}

.collection--item-jewellery {
    grid-column: span 2 / span 2;
    grid-column-start: 3;
    grid-row-start: 3;
}

.collection--item-gift {
    grid-column-start: 3;
    grid-row-start: 1;
}

.collection--item-mens {
    grid-column-start: 4;
    grid-row-start: 1;
}

.collection--item-personalised {
    grid-column-start: 4;
    grid-row-start: 2;
}

.collection--item-gift-25k {
    grid-column-start: 3;
    grid-row-start: 2;
}

.collection--item-workwear {
    grid-column-start: 2;
    grid-row-start: 3;
}

.collection--item-festive {
    grid-column-start: 1;
    grid-row-start: 3;
}

.collection-item .promotional-banner {
    align-items: flex-end;
    cursor: pointer;
}

.collection-item .promotional-banner--square .promotional-banner__content .hero__title,
.collection-item .promotional-banner--square .promotional-banner__content .hero__subtitle {
    color: var(--bs-text-color);
    margin: 0;
}

.collection-item .promotional-banner--square .promotional-banner__image {
    aspect-ratio: unset;
    position: relative;
}

.collection-item .promotional-banner--square .promotional-banner__image img {
    transition: var(--base-transition);
}

.collection-item:hover .promotional-banner--square .promotional-banner__image img {
    transform: scale(1.1);
}

/* .collection-item .promotional-banner--square .promotional-banner__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ffffffb3, transparent);
} */

.collection-item .promotional-banner__content {
    width: 100%;
    padding: 1.5rem;
}

.collection-item .promotional-banner__content .btn {
    padding-right: 0;
    padding-left: 0;
}

.collection-item .promotional-banner__content .hero__title {
    font-size: clamp(1rem, 1.5vw + 1rem, 2.5rem);
    line-height: 100%;
}

.collection-item .promotional-banner__content .hero__subtitle {
    font-size: clamp(1rem, 1.5vw + 1rem, 2.5rem);
    line-height: 100%;
    margin-bottom: 0;
}

/* ======= Steal The Style Section ====== */
.steal-style__slider {
    position: relative;
}

.steal-style__slider .slick-list {
    margin: 0 -0.75rem;
}

.steal-style__slide {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.steal-style__slider .steal-style__slide {
    margin: 0 0.75rem 1rem;
    pointer-events: auto;
    height: auto;
}

.steal-style__img {
    width: 100%;
    display: block;
    border-radius: 0;
}

/* Hotspot (star button) */
.hotspot {
    position: absolute;
    width: 2.25rem;
    height: 2.25rem;
    background: url(../images/icons/icon-spot-star.svg) no-repeat center center;
    background-size: contain;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.hotspot:hover {
    transform: scale(1.2);
}


/* Tooltip */
.hotspot__tooltip {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 0.5rem;
    border-radius: 0.375rem;
    white-space: nowrap;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    z-index: 10;
}

.hotspot__tooltip h6,
.hotspot__tooltip a {
    font-size: 0.85rem;
    color: #ffffff;
    padding: 0 !important;
}

.hotspot__tooltip h6 {
    margin-bottom: 0.5rem;
}

.hotspot__tooltip img {
    max-width: 3rem;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    vertical-align: middle;
    border-radius: 0.15rem;
    float: left;
    margin-right: 0.5rem;
}

.hotspot:hover .hotspot__tooltip {
    opacity: 1 !important;
    visibility: visible !important;
    bottom: 3.75rem;
}

/* Responsive */
@media (max-width: 576px) {
    .hotspot__tooltip {
        transform: translateX(-50%) scale(0.65);
    }

    .mb-sm-4 {
        margin-bottom: 1.5rem !important;
    }

    .steal-style__slider .steal-style__slide {
        margin: 0 0.5rem 1rem;
    }

    .steal-style__slider .slick-list {
        margin: 0 -1rem;
    }

    .steal-style__slide {
        border-radius: 0.5rem;
    }

    .slick-arrow {
        display: none !important;
    }
}

/* ======= Featured Collection Section ====== */
.featured-collection__slider {
    position: relative;
}

.featured-collection__slider .slick-list {
    margin: 0 -0.75rem;
}

.featured-collection__slide {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.featured-collection__slider .featured-collection__slide {
    margin: 0 0.75rem 1rem;
    pointer-events: auto;
    height: auto;
}

.featured-collection__figure {
    margin: 0;
    overflow: hidden;
}

.featured-collection__img {
    width: 100%;
    display: block;
    border-radius: 0;
    transition: var(--base-transition);
}

.featured-collection__slider .featured-collection__slide:hover {
    cursor: pointer;
}

.featured-collection__slider .featured-collection__slide:hover img {
    transform: scale(1.1);
}

.featured-collection__description {
    text-align: center;
    padding: 1rem 1rem 0;
    margin-bottom: 0;
}

.featured-collection__description span {
    display: block;
    font-size: 0.95rem;
    color: #0a2d3e;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Responsive */
@media (max-width: 576px) {

    .featured-collection__slider .featured-collection__slide {
        margin: 0 0.5rem 1rem;
    }

    .featured-collection__slider .slick-list {
        margin: 0 -1rem;
    }

    .featured-collection__figure {
        border-radius: 0.5rem;
    }

    .featured-collection__description {
        padding: 1rem 0 0;
        font-size: 0.95rem;
    }
}

/* ======= Elegance In Motion Section ====== */
.elegance-motion__slider {
    position: relative;
}

.elegance-motion__slider .slick-list {
    margin: 0 -0.75rem;
}

.elegance-motion__slide {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.elegance-motion__slider .elegance-motion__slide {
    margin: 0 0.75rem 1rem;
    pointer-events: auto;
    height: auto;
}

.elegance-motion__video {
    width: 100%;
    height: auto;
    border-radius: 0;
    /* 8px */
    display: block;
    object-fit: cover;
}

/* Shop Button */
.elegance-motion__btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: url(../images/icons/icon-cart-circle.svg) no-repeat center center;
    background-size: cover;
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.elegance-motion__btn:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 576px) {

    .elegance-motion__slider .elegance-motion__slide {
        margin: 0 0.5rem 1rem;
        border-radius: 0.5rem;
    }

    .elegance-motion__slider .slick-list {
        margin: 0 -1rem;
    }

    .slick-arrow {
        display: none !important;
    }
}

/* ====== Testimonial ====== */
.testimonial__container {
    margin: 0 auto;
    position: relative;
}

.testimonial__slider {
    display: flex;
    align-items: stretch;
}


/*
.testimonial__card {
    background: #F4F4F4;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 320px;
}

*/

.testimonial__slider .testimonial__card {
    margin: 0 0.75rem;
    /* Half of 1.5rem on each side = total 1.5rem gap */
}

.testimonial__slider .slick-list {
    margin: 0 -0.75rem;
    /* Negative half margin to balance */
}

.testimonial__avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
}

.testimonial__name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0a2d3e;
    margin-bottom: 0.25rem;
}

.testimonial__date {
    font-size: 0.875rem;
    color: #7a7a7a;
    margin-bottom: 1rem;
}

.testimonial__text {
    font-size: 1rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
    min-height: 4rem;
}

.testimonial__link {
    display: inline-block;
    font-size: 0.95rem;
    color: #0a2d3e;
    text-decoration: underline;
    transition: color 0.3s;
}

.testimonial__link:hover {
    color: #06304e;
}



/* ====== Instagram Section ====== */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery__item {
    overflow: hidden;
    display: flex;
}

.gallery__item:nth-child(1) {
    grid-column: span 2 / span 2;
    grid-row: span 1 / span 1;
    aspect-ratio: 2 / 1;
}

.gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery__image:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .promotional-banner--portrait .promotional-banner__content .hero__title {
        font-size: 1.5rem !important;
        line-height: 100%;
    }

    .promotional-banner__content .hero__title {
        font-size: 1.5rem !important;
    }
}

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

    .overlay {
        padding: 1rem;
    }

    .overlay h2 {
        font-size: 1.25rem !important;
    }
}

@media (max-width: 576px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery__item {
        aspect-ratio: 1/1;
        /* 🧠 Make all images square and same size in mobile */
    }

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

    .section--best-seller .slick-list .slick-slide {
        margin: 0 0 !important;
    }

    .section--best-seller .slick-list .slick-slide {
        padding: 0 0.5rem !important;
    }

    section.section--hero-carousel {
        margin-bottom: 3.5rem;
        overflow: visible;
    }

    .section--hero-carousel .carousel-indicators {
        bottom: -2.5rem;
    }

}