/* =========================================================
   PREMIUM SECTION REVEAL ANIMATIONS
========================================================= */

.reveal-section {
    opacity: 0;
    transform: translateY(55px);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   SECTION CHILD REVEALS
========================================================= */

.reveal-section .reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-section.is-visible .reveal-item {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   STAGGER DELAYS
========================================================= */

.reveal-section.is-visible .reveal-item:nth-child(1) {
    transition-delay: 0.05s;
}

.reveal-section.is-visible .reveal-item:nth-child(2) {
    transition-delay: 0.12s;
}

.reveal-section.is-visible .reveal-item:nth-child(3) {
    transition-delay: 0.19s;
}

.reveal-section.is-visible .reveal-item:nth-child(4) {
    transition-delay: 0.26s;
}

.reveal-section.is-visible .reveal-item:nth-child(5) {
    transition-delay: 0.33s;
}

.reveal-section.is-visible .reveal-item:nth-child(6) {
    transition-delay: 0.40s;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .reveal-section,
    .reveal-section .reveal-item {
        opacity: 1;
        transform: none;
        transition: none;
    }

}
/* =========================================================
   FULL PAGE SKELETON LOADER
========================================================= */

#page-skeleton {
    position: fixed;
    inset: 0;
    z-index: 999999;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: #faf9f6;
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

#page-skeleton.skeleton-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* =========================================================
   BASE SKELETON
========================================================= */

.skeleton {
    position: relative;
    overflow: hidden;
    background: #e8edf0;
}

.skeleton::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.65) 45%,
            rgba(255, 255, 255, 0.9) 50%,
            rgba(255, 255, 255, 0.65) 55%,
            transparent 100%
        );

    transform: translateX(-100%);
    animation: skeleton-shimmer 1.6s ease-in-out infinite;
}

@keyframes skeleton-shimmer {
    100% {
        transform: translateX(100%);
    }
}


/* =========================================================
   NAVBAR
========================================================= */

.skeleton-navbar {
    height: 82px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: #ffffff;
    border-bottom: 1px solid #edf1f3;
}

.skeleton-logo {
    width: 155px;
    height: 34px;
    border-radius: 7px;
}

.skeleton-nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.skeleton-nav-item {
    width: 65px;
    height: 12px;
    border-radius: 20px;
}

.skeleton-nav-button {
    width: 125px;
    height: 38px;
    border-radius: 25px;
}


/* =========================================================
   HERO
========================================================= */

.skeleton-hero {
    position: relative;
    width: 100%;
    height: clamp(380px, 65vh, 650px);
    background: #dfe6e9;
    overflow: hidden;
}

.skeleton-hero-content {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(550px, 70%);
    height: 120px;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    opacity: 0.65;
}

.skeleton-hero-bottom {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.skeleton-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}


/* =========================================================
   COMMON SECTION
========================================================= */

.skeleton-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 5%;
}

.skeleton-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto 45px;
    max-width: 700px;
}

.skeleton-pill {
    width: 145px;
    height: 27px;
    border-radius: 999px;
}

.skeleton-title {
    width: 330px;
    height: 43px;
    margin-top: 18px;
    border-radius: 10px;
}

.skeleton-divider {
    width: 90px;
    height: 4px;
    margin-top: 18px;
    border-radius: 10px;
}

.skeleton-description {
    width: min(580px, 90%);
    height: 13px;
    margin-top: 18px;
    border-radius: 10px;
}


/* =========================================================
   PRODUCT CARDS
========================================================= */

.skeleton-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.skeleton-product {
    min-width: 0;
}

.skeleton-product-image {
    width: 100%;
    aspect-ratio: 1 / 1.12;
    border-radius: 18px;
}

.skeleton-product-line {
    width: 75%;
    height: 14px;
    margin-top: 15px;
    border-radius: 10px;
}

.skeleton-product-small {
    width: 45%;
    height: 10px;
    margin-top: 9px;
    border-radius: 10px;
}


/* =========================================================
   CONTROLS
========================================================= */

.skeleton-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
}

.skeleton-control {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.skeleton-pagination {
    width: 65px;
    height: 15px;
    border-radius: 20px;
}


/* =========================================================
   COLLECTIONS
========================================================= */

.skeleton-collections {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.skeleton-collection {
    text-align: center;
}

.skeleton-collection-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 55px 55px 18px 18px;
}

.skeleton-collection-title {
    width: 75%;
    height: 13px;
    margin: 15px auto 0;
    border-radius: 10px;
}

.skeleton-collection-small {
    width: 55%;
    height: 8px;
    margin: 8px auto 0;
    border-radius: 10px;
}


/* =========================================================
   REVIEWS
========================================================= */

.skeleton-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.skeleton-review {
    padding: 30px;
    min-height: 220px;
    background: #ffffff;
    border: 1px solid #edf1f3;
    border-radius: 20px;
}

.skeleton-review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    float: left;
    margin-right: 14px;
}

.skeleton-review-content {
    padding-top: 5px;
}

.skeleton-review-name {
    width: 110px;
    height: 12px;
    border-radius: 10px;
}

.skeleton-review-stars {
    width: 70px;
    height: 9px;
    margin-top: 8px;
    border-radius: 10px;
}

.skeleton-review-text {
    clear: both;
    width: 100%;
    height: 12px;
    margin-top: 30px;
    border-radius: 10px;
}

.skeleton-review-text.short {
    width: 70%;
    margin-top: 10px;
}


/* =========================================================
   ABOUT
========================================================= */

.skeleton-about {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.skeleton-about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.skeleton-about-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skeleton-about-column.offset {
    padding-top: 30px;
}

.skeleton-about-image {
    width: 100%;
    height: 190px;
    border-radius: 20px;
}

.skeleton-about-image.large {
    height: 250px;
}

.skeleton-about-content {
    width: 100%;
}

.skeleton-about-title {
    width: 80%;
    height: 42px;
    margin-top: 18px;
    border-radius: 10px;
}

.skeleton-about-title.second {
    width: 55%;
    margin-top: 10px;
}

.skeleton-about-description {
    width: 95%;
    height: 13px;
    margin-top: 25px;
    border-radius: 10px;
}

.skeleton-about-description + .skeleton-about-description {
    margin-top: 10px;
}

.skeleton-about-description.short {
    width: 65%;
}

.skeleton-about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.skeleton-tag {
    width: 125px;
    height: 34px;
    border-radius: 30px;
}

.skeleton-stats {
    width: 100%;
    height: 85px;
    margin-top: 30px;
    border-radius: 18px;
}


/* =========================================================
   FOOTER
========================================================= */

.skeleton-footer {
    width: 100%;
    min-height: 220px;
    padding: 55px 6%;
    background: #092e4c;
}

.skeleton-footer-logo {
    width: 160px;
    height: 30px;
    border-radius: 7px;
    opacity: 0.5;
}

.skeleton-footer-links {
    display: flex;
    gap: 25px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.skeleton-footer-line {
    width: 100px;
    height: 10px;
    border-radius: 10px;
    opacity: 0.5;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .skeleton-products {
        grid-template-columns: repeat(3, 1fr);
    }

    .skeleton-products .skeleton-product:nth-child(4) {
        display: none;
    }

    .skeleton-collections {
        grid-template-columns: repeat(3, 1fr);
    }

    .skeleton-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .skeleton-reviews-grid .skeleton-review:nth-child(3) {
        display: none;
    }

    .skeleton-about {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .skeleton-about-images {
        max-width: 600px;
        width: 100%;
        margin: auto;
    }

    .skeleton-about-content {
        max-width: 700px;
        margin: auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .skeleton-navbar {
        height: 68px;
        padding: 0 18px;
    }

    .skeleton-logo {
        width: 115px;
        height: 28px;
    }

    .skeleton-nav-links {
        display: none;
    }

    .skeleton-nav-button {
        width: 90px;
        height: 32px;
    }

    .skeleton-hero {
        height: 430px;
    }

    .skeleton-hero-content {
        width: 80%;
        height: 100px;
    }

    .skeleton-section {
        padding: 50px 18px;
    }

    .skeleton-title {
        width: 250px;
        height: 34px;
    }

    .skeleton-description {
        width: 90%;
    }

    .skeleton-products {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .skeleton-products .skeleton-product:nth-child(n + 3) {
        display: none;
    }

    .skeleton-product-image {
        border-radius: 14px;
    }

    .skeleton-collections {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 12px;
    }

    .skeleton-collection-image {
        border-radius: 40px 40px 14px 14px;
    }

    .skeleton-reviews-grid {
        grid-template-columns: 1fr;
    }

    .skeleton-reviews-grid .skeleton-review:nth-child(2),
    .skeleton-reviews-grid .skeleton-review:nth-child(3) {
        display: none;
    }

    .skeleton-review {
        padding: 22px;
    }

    .skeleton-about-images {
        gap: 10px;
    }

    .skeleton-about-image {
        height: 140px;
    }

    .skeleton-about-image.large {
        height: 180px;
    }

    .skeleton-about-title {
        width: 90%;
        height: 34px;
    }

    .skeleton-about-title.second {
        width: 65%;
    }

    .skeleton-footer {
        min-height: 180px;
        padding: 40px 20px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .skeleton::after {
        animation: none;
    }

    #page-skeleton {
        transition: none;
    }

}
/* =========================================================
   PREMIUM RESPONSIVE 7-PANEL HERO
========================================================= */

#hero-section {
    isolation: isolate;
    position: relative;
    width: 100%;

    /*
     * Smaller than full screen.
     * Desktop:
     */
    height: clamp(420px, 68vh, 760px);

    min-height: 420px;

    overflow: hidden;
    background: #071827;
     margin-top: 150px;
}


/* =========================================================
   7 VERTICAL PANELS
========================================================= */

.hero-panels {
    position: absolute;
    inset: 0;

    display: grid;

    grid-template-columns:
        repeat(7, minmax(0, 1fr));

    width: 100%;
    height: 100%;

    overflow: hidden;
}


/* =========================================================
   INDIVIDUAL PANEL
========================================================= */

.hero-panel {
    position: relative;

    width: 100%;
    height: 100%;

    min-width: 0;

    overflow: hidden;

    background: #071827;

    isolation: isolate;
}


/* =========================================================
   IMAGE LAYERS

   IMPORTANT:
   The image itself is the FULL HERO WIDTH,
   not 700% of each panel.

   This prevents the previous cropping problem.
========================================================= */

.hero-panel-image {
    position: absolute;

    top: 0;
    left: 0;

    width: 700%;
    height: 100%;

    max-width: none;

    /*
     * Preserve image proportions.
     */
    object-fit: cover;

    object-position: center center;

    pointer-events: none;
    user-select: none;

    will-change: transform;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    display: block;
}


/* =========================================================
   PANEL IMAGE POSITION

   Every panel sees its corresponding section
   of the SAME image.
========================================================= */

.hero-panel[data-panel="0"] .hero-panel-image {
    left: 0%;
}

.hero-panel[data-panel="1"] .hero-panel-image {
    left: -100%;
}

.hero-panel[data-panel="2"] .hero-panel-image {
    left: -200%;
}

.hero-panel[data-panel="3"] .hero-panel-image {
    left: -300%;
}

.hero-panel[data-panel="4"] .hero-panel-image {
    left: -400%;
}

.hero-panel[data-panel="5"] .hero-panel-image {
    left: -500%;
}

.hero-panel[data-panel="6"] .hero-panel-image {
    left: -600%;
}


/* =========================================================
   CURRENT IMAGE
========================================================= */

.hero-panel-current {
    z-index: 1;

    transform: translate3d(0, 0, 0);

    transition: none;
}


/* =========================================================
   NEXT IMAGE
========================================================= */

.hero-panel-next {
    z-index: 2;

    transform: translate3d(0, -105%, 0);

    transition: none;
}


/* =========================================================
   PANEL SEPARATOR
========================================================= */

.hero-panel-separator {
    position: absolute;

    top: 0;
    right: 0;

    width: 1px;
    height: 100%;

    z-index: 10;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255, 255, 255, 0.16),
            transparent
        );

    pointer-events: none;
}


/* =========================================================
   SUBTLE INNER DEPTH
========================================================= */

.hero-panel::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 4;

    pointer-events: none;

    box-shadow:
        inset 1px 0 rgba(255, 255, 255, 0.025),
        inset -1px 0 rgba(0, 0, 0, 0.08);
}


/* =========================================================
   NAVIGATION BUTTONS
========================================================= */

.hero-nav {
    position: absolute;

    top: 50%;
    z-index: 40;

    display: flex;

    width: 48px;
    height: 48px;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.30);

    border-radius: 999px;

    color: white;

    background: rgba(0, 0, 0, 0.22);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transform: translateY(-50%);

    cursor: pointer;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.hero-nav:hover {
    background: rgba(255, 255, 255, 0.18);

    border-color:
        rgba(255, 255, 255, 0.60);

    transform:
        translateY(-50%)
        scale(1.08);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.28);
}


.hero-nav:active {
    transform:
        translateY(-50%)
        scale(0.94);
}


.hero-nav-left {
    left: 20px;
}


.hero-nav-right {
    right: 20px;
}


.hero-nav .material-symbols-outlined {
    font-size: 25px;
}


/* =========================================================
   DOTS
========================================================= */

.hero-dot {
    width: 7px;
    height: 7px;

    padding: 0;

    border:
        1px solid rgba(255, 255, 255, 0.60);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.20);

    cursor: pointer;

    transition:
        width 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}


.hero-dot:hover {
    transform: scale(1.25);

    background:
        rgba(255, 255, 255, 0.80);
}


.hero-dot.active {
    width: 28px;

    background: white;

    border-color: white;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1440px) {

    #hero-section {
        height: clamp(520px, 65vh, 760px);
    }

    .hero-nav-left {
        left: 28px;
    }

    .hero-nav-right {
        right: 28px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1023px) {

    #hero-section {
        height: clamp(400px, 60vh, 600px);

        min-height: 400px;
    }


    .hero-nav {
        width: 44px;
        height: 44px;
    }


    .hero-nav-left {
        left: 14px;
    }


    .hero-nav-right {
        right: 14px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    #hero-section {
        /*
         * Better mobile proportion.
         */
        height: clamp(300px, 55vw, 440px);

        min-height: 300px;
    }


    /*
     * Keep exactly 7 panels.
     */
    .hero-panels {
        grid-template-columns:
            repeat(7, minmax(0, 1fr));
    }


    .hero-nav {
        width: 38px;
        height: 38px;
    }


    .hero-nav-left {
        left: 9px;
    }


    .hero-nav-right {
        right: 9px;
    }


    .hero-nav .material-symbols-outlined {
        font-size: 20px;
    }


    .hero-dot {
        width: 6px;
        height: 6px;
    }


    .hero-dot.active {
        width: 23px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    #hero-section {
        height: 300px;
        min-height: 300px;
    }


    .hero-nav {
        width: 36px;
        height: 36px;
    }


    .hero-nav-left {
        left: 7px;
    }


    .hero-nav-right {
        right: 7px;
    }


    .hero-nav .material-symbols-outlined {
        font-size: 19px;
    }
}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 380px) {

    #hero-section {
        height: 270px;
        min-height: 270px;
    }


    .hero-nav {
        width: 33px;
        height: 33px;
    }


    .hero-nav-left {
        left: 5px;
    }


    .hero-nav-right {
        right: 5px;
    }


    .hero-nav .material-symbols-outlined {
        font-size: 17px;
    }


    .hero-dot.active {
        width: 20px;
    }
}


/* =========================================================
   LANDSCAPE MOBILE
========================================================= */

@media (max-height: 600px) and (orientation: landscape) {

    #hero-section {
        height: 75vh;
        min-height: 260px;
        max-height: 520px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-panel-image {
        transition: none !important;
        animation: none !important;
    }

    .hero-nav {
        transition: none !important;
    }

    .hero-dot {
        transition: none !important;
    }
}
/* =========================================================
   PREMIUM PRODUCT CARDS
========================================================= */

.gs-card-wrap {
    height: auto;
    padding: 0 0 1.5rem;
}

/* Card shell */

.gs-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;

    background: #ffffff;
    border: 1px solid #eef0f8;
    border-radius: 1.25rem;

    transition:
        transform 0.35s cubic-bezier(.25, .8, .25, 1),
        box-shadow 0.35s cubic-bezier(.25, .8, .25, 1),
        border-color 0.3s ease;
}

.gs-card:hover {
    transform: translateY(-6px);
    border-color: #e3e6f2;
    box-shadow: 0 20px 48px rgba(45, 66, 123, 0.14);
}


/* =========================================================
   IMAGE
========================================================= */

.gs-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f5f7ff;
}

.gs-img-link {
    display: block;
    width: 100%;
    height: 100%;
}

.gs-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition:
        transform 0.6s cubic-bezier(.25, .8, .25, 1);
}

.gs-card:hover .gs-img {
    transform: scale(1.07);
}


/* =========================================================
   DISCOUNT BADGE
========================================================= */

/* =========================================================
   DISCOUNT BADGE
========================================================= */

.gs-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;

    display: inline-flex;
    align-items: center;
    gap: 5px;

    padding: 5px 10px 5px 8px;

    background: linear-gradient(
        135deg,
        #092E4C 0%,
        #0C526F 100%
    );

    color: #ffffff;

    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;

    box-shadow:
        0 5px 16px rgba(9, 46, 76, 0.22);

    pointer-events: none;
    white-space: nowrap;

    animation: gsBadgePop 0.4s cubic-bezier(
        0.175,
        0.885,
        0.32,
        1.275
    ) both;
}


/* Badge icon */

.gs-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 16px;
    height: 16px;

    font-size: 14px;
    line-height: 1;

    color: #ffffff;
}


/* Badge animation */

@keyframes gsBadgePop {

    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}



/* =========================================================
   ALWAYS-VISIBLE QUICK ACTIONS
========================================================= */

.gs-quick-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;

    display: flex;
    flex-direction: column;
    gap: 7px;

    /* ALWAYS VISIBLE */
    opacity: 1;
    transform: translateX(0);

    transition: transform .25s ease;
}


/* Subtle movement only */

.gs-card:hover .gs-quick-actions {
    transform: translateX(0);
}


/* =========================================================
   WISHLIST BUTTON
========================================================= */

.gs-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    padding: 0;

    border: 1px solid rgba(45, 66, 123, .08);
    border-radius: 50%;

    background: rgba(255, 255, 255, .96);

    cursor: pointer;

    box-shadow:
        0 4px 14px rgba(0, 0, 0, .12);

    backdrop-filter: blur(8px);

    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.gs-action-btn:hover {
    transform: scale(1.08);
    background: #fff;
    border-color: rgba(45, 66, 123, .16);
    box-shadow:
        0 7px 18px rgba(45, 66, 123, .16);
}


/* Material icon */

.gs-action-btn .material-symbols-outlined {
    font-size: 19px;
    line-height: 1;

    color: #555;

    transition:
        color .2s ease,
        transform .2s ease;
}


/* Wishlist hover */

.gs-wish-btn:hover {
    background: #fff4f7;
}

.gs-wish-btn:hover .material-symbols-outlined {
    color: #e91e63;
}


/* Filled wishlist */

.gs-wish-btn .material-symbols-outlined[style*="FILL"] {
    color: #e91e63;
}


/* =========================================================
   CARD BODY
========================================================= */

.gs-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;

    gap: 9px;

    padding: 13px 13px 15px;
}

.gs-product-name {
    display: -webkit-box;
    overflow: hidden;

    margin: 0;

    color: #2D427B;

    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.38;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/* =========================================================
   PRICE + CART FOOTER
========================================================= */

.gs-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 8px;

    margin-top: auto;
    padding-top: 10px;

    border-top: 1px solid #f0f2fa;
}

.gs-price-box {
    display: flex;
    flex-direction: column;
    gap: 1px;

    min-width: 0;
}

.gs-price {
    color: #2D427B;

    font-size: 16.5px;
    font-weight: 800;
    letter-spacing: -.3px;
}

.gs-original-price {
    color: #b8b8b8;

    font-size: 11.5px;

    text-decoration: line-through;
}


/* =========================================================
   CART BUTTON
========================================================= */

.gs-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 5px;

    padding: 8px 14px;

    color: #fff;
    background: #2D427B;

    border: 0;
    border-radius: 999px;

    font-size: 11.5px;
    font-weight: 700;

    cursor: pointer;
    white-space: nowrap;

    box-shadow: 0 4px 14px rgba(45, 66, 123, .30);

    transition:
        background .2s ease,
        transform .15s ease,
        box-shadow .2s ease;
}

.gs-cart-btn:hover {
    background: #1a2a52;
    box-shadow: 0 6px 20px rgba(45, 66, 123, .40);
}

.gs-cart-btn:active {
    transform: scale(.94);
}

.gs-cart-btn .material-symbols-outlined {
    font-size: 16px;
}

.gs-cart-label {
    display: inline;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 640px) {

    .gs-card {
        border-radius: 1rem;
    }

    .gs-img-box {
        aspect-ratio: 1 / 1;
    }

    .gs-quick-actions {
        top: 8px;
        right: 8px;
    }

    .gs-action-btn {
        width: 34px;
        height: 34px;
    }

    .gs-action-btn .material-symbols-outlined {
        font-size: 18px;
    }

    .gs-card-body {
        padding: 11px 11px 13px;
        gap: 7px;
    }

    .gs-product-name {
        font-size: 12.5px;
    }

    .gs-price {
        font-size: 15px;
    }

    .gs-cart-btn {
        padding: 8px;
        width: 34px;
        height: 34px;
    }

    .gs-cart-label {
        display: none;
    }
}


@media (max-width: 380px) {

    .gs-card-body {
        padding: 10px;
    }

    .gs-product-name {
        font-size: 12px;
    }

    .gs-price {
        font-size: 14px;
    }

    .gs-action-btn {
        width: 32px;
        height: 32px;
    }

}



.carousel-container {
    overflow: hidden;
    width: 100%;
    padding: 40px 0 80px 0;
    /* Space for zigzag */
}

.carousel-track-infinite {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.review-card-premium {
    width: 350px;
    flex-shrink: 0;
    background: #F3F6FF;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* Zigzag Pattern */
.carousel-track-infinite>div:nth-child(even) {
    transform: translateY(40px);
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    line-height: 1;
    opacity: 0.1;
}

.review-card-premium {
    min-width: 350px;
}
