
/* ==========================================================================
   Hero SECTION START
   ========================================================================== */
.hero-section {
    width: 100%;
    height: 100vh;
    min-height: 700px;
}


.hero-video {
    object-fit: cover;
    object-position: center;
}

.hero-video::-webkit-media-controls {
    display: none !important;
}

.hero-title {
    font-size: 6rem;
    line-height: 0.95;
}

.hero-text {
    font-size: 1.2rem;
    max-width: 600px;
}

@media (max-width: 991px) {

    .hero-section {
        min-height: 600px;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {

    .hero-section {
        min-height: 100vh;
        padding-top: 80px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    .btn-lg {
        width: 100%;
    }
}


.primary-image,
.secondary-image {
    transition: all 0.4s ease;
}

.secondary-image {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.ur-running-card:hover .secondary-image {
    opacity: 1;
}

.ur-running-card:hover .primary-image {
    opacity: 0;
}

.ur-running-swatch {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .15);
    display: inline-block;
    transition: all .25s ease;
    cursor: pointer;
}

.ur-running-swatch:hover {
    transform: scale(1.15);
}

.add-to-bag:hover {
    color: #fff !important;
}

.image-area {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.model-image {
    width: 100%;
    display: block;
}

.hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.circle-dot {
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    display: block;
    cursor: pointer;
    position: relative;
}

.circle-dot::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid #fff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/*.popup-box {*/
/*    position: absolute;*/
/*    top: 30px;*/
/*    left: 0;*/
/*    min-width: 220px;*/
/*    background: #fff;*/
/*    color: #000;*/
/*    padding: 12px;*/
/*    border-radius: 10px;*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    transition: .3s ease;*/
/*}*/

.hotspot:hover .popup-box {
    opacity: 1;
    visibility: visible;
}

/* DESKTOP HERO */

.desktop-hero {
    height: 100vh;
}

.hero-video {
    object-fit: cover;
}

/* MOBILE HERO */

.mobile-hero {
    width: 100%;
    background: #000;
    margin-top: 73px;
}

.mobile-hero-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* OVERLAY */

.hero-overlay {
    background: rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
    Hero SECTION END
========================================================================== */


/* ==========================================================================
    INTERACTIVE FEATURE CARD START
========================================================================== */

.ur-card-container {
    height: 520px;
    cursor: pointer;
    background-color: #111;
}

.ur-card-bg-img {
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ur-card-container:hover .ur-card-bg-img {
    transform: scale(1.05);
}

.ur-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.ur-card-text-main {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.ur-card-hidden-wrapper {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}

.ur-card-container:hover .ur-card-hidden-wrapper {
    max-height: 80px;
    opacity: 1;
    visibility: visible;
}

.ur-card-action-btn {
    background-color: var(--dr-white) !important;
    color: var(--dr-black) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 28px !important;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, color 0.3s ease !important;
}

.ur-card-action-btn:hover {
    background-color: var(--dr-green) !important;
    color: var(--dr-white) !important;
    gap: 15px !important;
}

/* ==========================================================================
    INTERACTIVE FEATURE CARD END
========================================================================== */


/* ==========================================================================
    RUNNING PRODUCT LISTING SECTION START
========================================================================== */

.ur-running-heading {
    font-family: system-ui, -apple-system, sans-serif;
    letter-spacing: 0.5px;
}

.ur-running-card {
    background-color: var(--dr-white);
    border: none;
    border-radius: 0px;
    cursor: pointer;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.ur-running-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.ur-running-img-wrapper {
    height: 340px;
    background-color: #f7f7f7;
}

.ur-running-wishlist-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--dr-white);
    border: none;
    z-index: 10;
    color: var(--dr-black);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.ur-running-wishlist-btn:hover {
    background-color: var(--dr-black);
    z-index: 10;
    color: var(--dr-white);
}

.ur-running-quick-add-btn {
    background-color: var(--dr-black);
    color: var(--dr-white);
    border: none;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s ease, visibility 0.35s ease;
}

.ur-running-card:hover .ur-running-quick-add-btn {
    transform: translateY(0);
    opacity: 1;
    padding: 10px;
    z-index: 10;
    visibility: visible;
}

.ur-running-quick-add-btn:hover {
    background-color: #222222;
}

.ur-running-swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
}

.ur-running-swatch.active {
    box-shadow: 0 0 0 1px var(--dr-white), 0 0 0 2px var(--dr-black);
}

.ur-running-title {
    color: #111111;
    font-size: 0.95rem !important;
}

.ur-running-desc {
    color: #666666 !important;
    font-size: 0.8rem !important;
    line-height: 1.4;
}

.ur-running-price {
    font-size: 0.95rem;
    color: #111111;
}

.object-fit-cover {
    object-fit: cover;
}

/* ==========================================================================
    RUNNING PRODUCT LISTING SECTION END
========================================================================== */

/* ==========================================================================
    Gallery SECTION start
========================================================================== */
.product-info {
    position: absolute;
    top: 27%;
    left: 28%;
    background: #fff;
    padding: 15px;
    width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #000;
}

.product-info p {
    color: #777;
    margin-bottom: 10px;
}

.add-to-bag {
    display: block;
    text-align: center;
    background: #000;
    color: #fff;
    padding: 10px;
    text-decoration: none;
    font-size: 14px;
}

.add-to-bag:hover {
    color: var(--dr-white);
    background: var(--dr-green)
}

.center-icon {
    position: absolute;
    top: 55%;
    left: 45%;
    width: 45px;
    height: 45px;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.center-icon i {
    font-size: 18px;
    color: #000;
}

.gallery-masonry {
    column-count: 3;
    column-gap: 8px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 8px;
    break-inside: avoid;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: .5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: .4s;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.gallery-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: .4s;
}

.gallery-item:hover .gallery-icon {
    opacity: 1;
    transform: translateY(0);
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 15px 15px;
    border-radius: 999px;
    text-decoration: none;
    background: linear-gradient(90deg,
            #7b2ff7 0%,
            #f107a3 100%);
    transition: 0.4s ease;
}

.instagram-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-icon i {
    color: #fff;
    font-size: 24px;
}

.instagram-text {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(241, 7, 163, 0.35);
}

.instagram-btn:hover .instagram-icon i {
    transform: scale(1.1);
}


@media(max-width:767px) {

    .instagram-btn {
        padding: 16px 24px;
        gap: 10px;
    }

    .instagram-text {
        font-size: 1rem;
    }

    .instagram-icon i {
        font-size: 20px;
    }

}

.product-info,
.center-icon {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
}

.gallery-item.active .product-info,
.gallery-item.active .center-icon {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991px) {
    .gallery-masonry {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .gallery-masonry {
        column-count: 3;
        column-gap: 4px;
    }

    .gallery-item {
        margin-bottom: 4px;
    }

    .gallery-icon {
        width: 32px;
        height: 32px;
        top: 8px;
        right: 8px;
    }

    .display-5 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .product-info {
        position: absolute;
        top: 36px;
        left: 50%;
        transform: translateX(-50%);
        width: 55%;
        padding: 5px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(6px);
        text-align: center;
        border-radius: 10px;
    }

    .product-info h4 {
        font-size: 9px;
        margin-bottom: 3px;
    }

    .product-info p {
        font-size: 8px;
        margin-bottom: 8px;
    }

    .add-to-bag {
        font-size: 8px;
        padding: 7px;
        border-radius: 6px;
    }

    .center-icon {
        width: 30px;
        height: 30px;
        bottom: 40px;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .center-icon i {
        font-size: 12px;
    }

    .gallery-item:hover .gallery-icon {
        opacity: 0;
    }
}

/* ==========================================================================
    Gallery SECTION  END
========================================================================== */



/* ==========================================================================
    Engineered SECTION  Start
========================================================================== */

.engineered-section {
    background: linear-gradient(to bottom right, #000000 0%, #000000 55%, #60605e 100%);
    overflow: hidden;
}

.engineered-heading {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
    font-weight: 500;
    color: #fff;
    margin-bottom: 25px;
}

.engineered-text {
    font-size: 20px;
    line-height: 1.7;
    color: #b5b5b5;
    margin-bottom: 45px;
    max-width: 520px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px;
    cursor: pointer;
    transition: 0.4s;
    margin-bottom: 18px;
    position: relative;
}

.feature-item:hover,
.feature-item.active {
    background: linear-gradient(to right, #171717, #0c0c0c);
}

.feature-item:hover .feature-icon,
.feature-item.active .feature-icon {
    background: #1b5f00;
}

.hotspot:hover .circle-dot {
    background: #2f8500;
    border-color: #2f8500;
    transform: scale(1.1);
}

.feature-item:hover~.image-area .circle-dot {
    background: #2f8500;
    border-color: #2f8500;
    transform: scale(1.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: #071600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.feature-icon i {
    color: #59d500;
    font-size: 24px;
}

.feature-item h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-item p {
    color: #9e9e9e;
    font-size: 17px;
    margin-bottom: 0;
}

.image-area {
    position: relative;
    max-width: 700px;
    margin: auto;
}

.model-image {
    width: 100%;
    object-fit: cover;
}

.hotspot {
    position: absolute;
}

.circle-dot {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.12);
    display: block;
    cursor: pointer;
    transition: 0.4s;
    position: relative;
}

.circle-dot::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: pulse 2s infinite;
}

.hotspot:hover .circle-dot {
    background: #2f8500;
    border-color: #2f8500;
    transform: scale(1.1);
}

/*.popup-box {*/
/*    position: absolute;*/
/*    left: 65px;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    background: #fff;*/
/*    color: #222;*/
/*    padding: 14px 24px;*/
/*    white-space: nowrap;*/
/*    font-size: 18px;*/
/*    font-weight: 500;*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    transition: 0.4s;*/
/*}*/
.popup-box {
    position: absolute;
    left: -65px;
    top: -160%;
    transform: translateY(-50%);
    background: #fff;
    color: #222;
    padding: 14px 24px;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.hotspot:hover .popup-box {
    opacity: 1;
    visibility: visible;
}

.popup-1 {
    top: 22%;
    left: 12%;
}

.popup-2 {
    top: 63%;
    left: 22%;
}

.popup-3 {
    top: 45%;
    right: 22%;
}

.popup-4 {
    top: 30%;
    right: 13%;
}

.circle-dot.active-hotspot {
    background: #2f8500;
    border-color: #2f8500;
    transform: scale(1.1);
}

@keyframes pulse {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }

}

@media(max-width:991px) {

    .engineered-heading {
        font-size: 42px;
    }

    .engineered-text {
        font-size: 16px;
    }

    .feature-item {
        padding: 18px;
    }

    .feature-item h5 {
        font-size: 18px;
    }

    .feature-item p {
        font-size: 15px;
    }

    .popup-box {
        font-size: 14px;
        padding: 12px 18px;
    }

    .popup-box {
        /* left: 50%;
        top: 65px; */
        left: 81%;
        top: -115px;
        transform: translateX(-50%);
        font-size: 14px;
        padding: 12px 18px;
        white-space: normal;
        width: max-content;
        max-width: 220px;
        text-align: center;
    }
}

/* ==========================================================================
    Engineered SECTION  END
========================================================================== */

/* ==========================================================================
    Performance SECTION  START
========================================================================== */


.performance-section {
    overflow: hidden;
}

.performance-image{
    overflow:hidden;
}

.performance-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:contain;
}


.performance-image{
    display:flex;
}

.performance-content {
    max-width: 580px;
}


.performance-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 400;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.performance-text {
    font-size: 22px;
    line-height: 1.7;
    color: #7d7d7d;
    margin-bottom: 35px;
    max-width: 560px;
    margin-top: 40px;
}

.performance-list {
    margin-bottom: 45px;
}

.performance-list li {
    font-size: 20px;
    color: #000;
    margin-bottom: 22px;
    padding-left: 18px;
    position: relative;
    line-height: 1.6;
}

.performance-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #000;
}

.performance-btn {
    background: #000;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 15px 40px;
    font-size: 16px;
    letter-spacing: .5px;
    transition: .4s;
}

.performance-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: .4s;
}

.cart-count-badge {
    position: absolute;
    top: 1px;
    right: 3px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    padding: 0 5px;
    z-index: 10;

}

.performance-btn:hover {
    background: var(--dr-green);
    color: #fff !important;
    gap: 20px;
}

.performance-btn:hover span {
    transform: translateX(5px);
}

@media(max-width:991px) {

    .performance-heading {
        margin-bottom: 20px;
        letter-spacing: -1px;
    }

    .performance-text {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .performance-list li {
        font-size: 17px;
        margin-bottom: 16px;
    }

    .performance-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 24px;
        font-size: 15px;
    }

}

/* ==========================================================================
    Performance SECTION  END
========================================================================== */



/* ==========================================================================
    Momentum SECTION  START
========================================================================== */
.momentum-section {
    background: #f3f3f3;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
    padding-bottom: 90px;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.momentum-heading {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #000;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.momentum-text {
    font-size: 20px;
    line-height: 1.7;
    color: #7a7a7a;
    max-width: 980px;
    margin: auto;
}

.momentum-content {
    font-size: 14px;
}

.momentum-feature {
    padding: 10px 20px;
}

.feature-emoji {
    font-size: 2rem;
    margin-bottom: 24px;
}

.momentum-feature h4 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 16px;
    font-weight: 500;
}

.momentum-feature p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #8a8a8a;
}

.signup-box {
    background: #fff;
    padding: 20px 20px;
    text-align: center;
    margin-top: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.signup-icon {
    width: 70px;
    height: 70px;
    margin: auto auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup-icon i {
    font-size: 2.5rem;
    color: #356d14;
}

.signup-box h3 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 18px;
}

.signup-box p {
    font-size: 1.1rem;
    color: #8a8a8a;
    margin-bottom: 35px;
}

.signup-form {
    display: flex;
    gap: 15px;
}

.signup-form input {
    flex: 1;
    height: 68px;
    border: 1px solid #d8d8d8;
    padding: 0 24px;
    font-size: 1.1rem;
    outline: none;
    background: #f8f8f8;
}

.signup-form input::placeholder {
    color: #9e9e9e;
}

.signup-form button {
    height: 68px;
    border: none;
    background: #000;
    color: #fff;
    padding: 0 38px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.4s;
}

.signup-form button i {
    font-size: 1.2rem;
    transition: 0.4s;
}

.signup-form input:hover {
    border: 2px solid var(--dr-green);
}

.signup-form button:hover {
    background: var(--dr-green);
}

.signup-form button:hover i {
    transform: translateX(5px);
}

@media(max-width:991px) {

    .momentum-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .momentum-heading {
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .momentum-text {
        font-size: 1.1rem;
    }

    .momentum-feature h4 {
        font-size: 1.5rem;
    }

    .momentum-feature p {
        font-size: 1rem;
    }

    .signup-box {
        padding: 40px 25px;
        margin-top: 50px;
    }

    .signup-box h3 {
        font-size: 2rem;
    }

    .signup-box p {
        font-size: 1rem;
    }

    .signup-form {
        flex-direction: column;
    }

    .signup-form button {
        width: 100%;
        justify-content: center;
    }

    .signup-form input {
        height: 68px;
        padding: 20px 24px;
    }

}

/* ==========================================================================
    Momentum SECTION  END
========================================================================== */

/* ==========================================================================
    Collection SECTION  START
========================================================================== */
.collections-section {
    overflow: hidden;
}

.collections-heading {
    font-size: clamp(2.5rem, 5vw, 5rem);
    color: #000;
    margin-bottom: 10px;
}

.collection-card {
    position: relative;
    overflow: hidden;
    min-height: 540px;
    cursor: pointer;
}

.collection-image {
    width: 100%;
    height: 540px;
    object-fit: cover;
    transition: 0.6s ease;
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.25) 45%,
            rgba(0, 0, 0, 0.05) 100%);
}

.collection-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
}

.collection-content h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.collection-content p {
    color: #d7d7d7;
    font-size: 14px;
    margin-bottom: 26px;
}

.collection-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 16px 28px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: 0.4s;
}

.collection-btn i {
    font-size: 1.2rem;
    transition: 0.4s;
}

.collection-btn:hover {
    background: var(--dr-green);
    color: #fff !important;
}

.collection-btn:hover i {
    transform: translateX(5px);
}

.collection-card:hover .collection-image {
    transform: scale(1.06);
}

@media(max-width:991px) {
    .collection-card {
        min-height: 460px;
    }

    .collection-image {
        height: 460px;
    }

    .collection-content h3 {
        font-size: 1.7rem;
    }

    .collection-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .collection-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* ==========================================================================
    Collection SECTION  END
========================================================================== */



/* ==========================================================================
    Strip SECTION  END
========================================================================== */

/* ==========================================================================
    Support PAGE START
========================================================================== */

.support-section {
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}

.support-heading {
    font-size: clamp(2rem, 5vw, 1.7rem);
    line-height: 1.2;
    font-weight: 400 !important;
    color: #000;
    margin-bottom: 12px;
}

.support-subheading {
    font-size: 16px;
    color: #7d7d7d;
    margin-bottom: 0;
}

.support-card {
    background: #ffffff;
    text-align: center;
    padding: 20px 30px;
    height: 100%;
    transition: 0.4s;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

.support-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #e4e7de;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    transition: 0.4s;
}

.support-icon i {
    color: #3d7b12;
    font-size: 28px;
    transition: 0.4s;
}

.support-card h4 {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-bottom: 5px;
}

.support-card p {
    font-size: 14px;
    color: #8a8a8a;
    margin-bottom: 0;
    line-height: 1.6;
}

.support-card:hover .support-icon {
    background: #dce8d2;
}

.support-card:hover .support-icon i {
    transform: scale(1.1);
}

@media(max-width:991px) {

    .support-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .support-subheading {
        font-size: 1rem;
    }

    .support-card {
        padding: 40px 25px;
    }

    .support-card h4 {
        font-size: 1.5rem;
    }

    .support-card p {
        font-size: 1rem;
    }

}

.mini-cart-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .4);

    z-index: 9998;

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;

}

.mini-cart-overlay.active {

    opacity: 1;
    visibility: visible;

}

.mini-cart-drawer {

    position: fixed;

    top: 0;
    right: 0;

    width: 420px;
    max-width: 100%;

    height: 100vh;

    background: #fff;

    z-index: 9999;

    transform: translateX(100%);

    transition: .35s ease;

    display: flex;
    flex-direction: column;

}

.mini-cart-drawer.active {

    transform: translateX(0);

}

.mini-cart-header {

    padding: 24px;

    border-bottom: 1px solid #eee;

    display: flex;
    align-items: center;
    justify-content: space-between;

}

.mini-cart-close {

    border: none;
    background: none;

    font-size: 2rem;

    line-height: 1;

}

.mini-cart-body {

    flex: 1;

    overflow-y: auto;

    padding: 24px;

}

.mini-cart-footer {

    border-top: 1px solid #eee;

    padding: 24px;

}

.mini-cart-subtotal {

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;

}

.mini-cart-btn {

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 54px;

    border-radius: 999px;

    border: 1px solid #111;

    color: #111;

    text-decoration: none;

    margin-bottom: 12px;

    font-weight: 600;

}

.mini-cart-btn.dark {

    background: #111;
    color: #fff;

}

.mini-cart-item {

    display: flex;

    gap: 16px;

    margin-bottom: 24px;

}

.mini-cart-item img {

    width: 90px;
    height: 110px;

    object-fit: cover;

    border-radius: 14px;

}

.mini-cart-item-title {

    font-size: .95rem;
    font-weight: 600;

    margin-bottom: 8px;

}

.mini-cart-remove {

    border: none;
    background: none;

    padding: 0;

    color: red;

    font-size: .85rem;

}

.wishlist-count-badge {
    position: absolute;
    top: 2px;
    right: 38px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    padding: 0 5px;
    z-index: 10;
}

/* ==========================================================================
    Support PAGE  END
========================================================================== */

