.product-card {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

/* Image container */
.product-img-wrap {
    width: 100%;
    height: 300px;
    /* control frame height */
    background: #f4f4f4;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image fills the frame */
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 🔥 fills & crops nicely */
    object-position: top;
    /* 🔥 keeps center */
    transition: transform 0.4s ease;
}

/* Smooth hover (optional) */
.product-card:hover img {
    transform: scale(1.05);
}

/* <!-- How It Works Section Begin --> */

:root {
    --primary-orange: #f26922;
    --primary-orange-dark: #e05a15;
    --dark-color: #3d3d3d;
    --text-muted: #666666;
    --bg-light: #fafafa;
    --border-light: #e8e8e8;
    --white: #ffffff;
    --gradient-orange: #91b028;
    --gradient-dark: linear-gradient(135deg, #3d3d3d, #2d2d2d);
    --card-shadow: 0 2px 15px rgba(61, 61, 61, 0.05);
    --card-hover-shadow: 0 20px 40px rgba(242, 105, 34, 0.18);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Section */
.how-it-works {
    background: #fafafa;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.how-it-works::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(242, 105, 34, 0.03) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.section-header h2 {
    color: #3d3d3d;
}

.section-header .lead {
    color: #666666;
}

/* ========== Process Steps Container ========== */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}

/* On desktop : single line, no wrap */
@media (min-width: 992px) {
    .process-steps {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* Individual step card */
.process-step {
    position: relative;
    flex: 1 1 120px;
    min-width: 115px;
    max-width: 160px;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transition: transform 0.3s ease;
}

.process-step:nth-child(1) {
    animation-delay: 0.06s;
}

.process-step:nth-child(2) {
    animation-delay: 0.12s;
}

.process-step:nth-child(3) {
    animation-delay: 0.18s;
}

.process-step:nth-child(4) {
    animation-delay: 0.24s;
}

.process-step:nth-child(5) {
    animation-delay: 0.3s;
}

.process-step:nth-child(6) {
    animation-delay: 0.36s;
}

.process-step:nth-child(7) {
    animation-delay: 0.42s;
}

.process-step:nth-child(8) {
    animation-delay: 0.48s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step number */
.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-orange);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 6px 15px rgba(242, 105, 34, 0.3);
    transition: var(--transition);
}

/* Card body */
.step-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 0.8rem 1.2rem;
    height: 100%;
    border: 2px solid #e8e8e8;
    box-shadow: var(--card-shadow);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f26922, #3d3d3d);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
    border-color: #f26922;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(
        135deg,
        rgba(242, 105, 34, 0.08),
        rgba(61, 61, 61, 0.05)
    );
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, #f26922, #3d3d3d);
    transform: rotateY(360deg);
}

.step-icon i {
    font-size: 1.4rem;
    color: #f26922;
    transition: var(--transition);
}

.step-card:hover .step-icon i {
    color: white;
    transform: scale(1.15);
}

.step-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #3d3d3d;
    margin: 0;
    transition: color 0.3s ease;
}

.step-card:hover .step-content h4 {
    color: #f26922;
}

/* No extra descriptions */

/* ========== Responsive adjustments ========== */
@media (max-width: 768px) {
    .how-it-works {
        padding: 2.5rem 0;
    }

    .section-header .display-5 {
        font-size: 1.8rem;
    }

    .process-steps {
        gap: 1.5rem;
        justify-content: center;
    }

    .process-step {
        flex: 0 0 auto;
        width: calc(50% - 1rem);
        max-width: 200px;
        min-width: 110px;
    }

    .step-card {
        padding: 2rem 0.6rem 1rem;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .step-icon {
        width: 45px;
        height: 45px;
    }

    .step-icon i {
        font-size: 1.3rem;
    }

    .step-content h4 {
        font-size: 0.85rem;
    }
}

.blogheading {
    font-size: 28px;
    font-weight: 700;
}

@media (max-width: 480px) {
    .blogheading {
        font-size: 13px;
    }

    .process-step {
        width: calc(50% - 0.8rem);
        max-width: 160px;
        min-width: 90px;
    }

    .step-card {
        padding: 1.8rem 0.4rem 0.9rem;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        top: -12px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .step-icon i {
        font-size: 1.2rem;
    }

    .step-content h4 {
        font-size: 0.8rem;
    }
}

/* Hover effects for touch devices */
@media (hover: none) {
    .step-card:hover {
        transform: none;
    }

    .step-card:active {
        transform: scale(0.97);
    }

    .step-card:hover .step-icon {
        background: linear-gradient(
            135deg,
            rgba(242, 105, 34, 0.08),
            rgba(61, 61, 61, 0.05)
        );
        transform: none;
    }

    .step-card:hover .step-icon i {
        color: #f26922;
    }

    .step-card:hover::before {
        transform: scaleX(0);
    }

    .step-card:hover .step-content h4 {
        color: #3d3d3d;
    }
}

@media print {
    .how-it-works {
        background: white;
    }

    .step-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* <!-- How It Works Section END --> */

/* ///////////  products slider css start ///////////////////////// */

/* ─── Root tokens ─── */
:root {
    --ps-gold: #d97b2e;
    --ps-gold-light: #f0d89a;
    --ps-gold-dark: #8c6d28;
    --ps-ink: #1a1a2e;
    --ps-ink-soft: #2e2e4a;
    --ps-mist: #f7f5f0;
    --ps-border: rgba(201, 168, 76, 0.22);
    --ps-radius-card: 18px;
    --ps-radius-img: 14px;
    --ps-shadow-card: 0 2px 8px rgba(26, 26, 46, 0.1);
    --ps-shadow-hover: 0 8px 30px rgba(26, 26, 46, 0.18);
}

/* ─── Section shell ─── */
.ps-section {
    background: var(--ps-mist);
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
}
.ps-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 60% 50% at 15% 20%,
            rgba(201, 168, 76, 0.07) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 50% 40% at 85% 75%,
            rgba(201, 168, 76, 0.06) 0%,
            transparent 70%
        );
    pointer-events: none;
}

/* ─── Section heading block ─── */
.ps-section-head {
    text-align: center;
    margin-bottom: 14px;
}

.ps-section-title {
    font-size: clamp(2rem, 4vw, 2rem);
    font-weight: 600;
   
    line-height: 1.15;
    margin: 0 0 10px;
}
.ps-section-sub {
    font-family: var(--ps-font-body);
    font-size: 15px;
    color: #5a5a72;
    margin: 0;
}

/* ─── Gold divider ─── */
.ps-divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--ps-gold),
        transparent
    );
    border-radius: 2px;
    margin: 14px auto 0;
}

/* ─── Slider block ─── */
.ps-slider-block {
    margin-bottom: 60px;
}
.ps-slider-block:last-child {
    margin-bottom: 0;
}

.ps-slider-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding: 0 6px;
}

.icon-trending {
    background: rgba(255, 111, 60, 0.13);
    color: #d4541b;
}
.icon-decor {
    background: rgba(34, 139, 90, 0.13);
    color: #1a7d50;
}

.ps-slider-label-text {
    flex: 1;
}
.ps-slider-label-text h3 {
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--ps-ink);
    margin: 0 0 2px;
    line-height: 1.2;
}
.ps-slider-label-text p {
    font-size: 13px;
    color: #6b6b85;
    margin: 0;
}

/* ─── Owl nav override ─── */
.ps-owl-wrap {
    position: relative;
}
.ps-owl-wrap .owl-nav {
    position: absolute;
    top: -52px;
    right: 4px;
    display: flex;
    gap: 8px;
    margin: 0;
}
.ps-owl-wrap .owl-nav button {
    width: 36px;
    height: 36px;
    border-radius: 50% !important;
    background: #fff !important;
    border: 1.5px solid var(--ps-border) !important;
    color: var(--ps-ink) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.ps-owl-wrap .owl-nav button:hover {
    background: var(--ps-gold) !important;
    border-color: var(--ps-gold) !important;
    color: #fff !important;
}
.ps-owl-wrap .owl-nav button span {
    font-size: 18px;
    line-height: 1;
    margin-top: -2px;
}
.ps-owl-wrap .owl-dots {
    text-align: center;
    margin-top: 18px;
}
.ps-owl-wrap .owl-dot span {
    width: 7px;
    height: 7px;
    background: #d0cecc !important;
    border-radius: 50% !important;
    transition: all 0.2s;
}
.ps-owl-wrap .owl-dot.active span,
.ps-owl-wrap .owl-dot:hover span {
    background: var(--ps-gold) !important;
    width: 22px !important;
    border-radius: 4px !important;
}

/* ─── Product Card ─── */
.ps-card {
    background: #fff;
    border-radius: var(--ps-radius-card);
    border: 1px solid rgba(201, 168, 76, 0.13);
    overflow: hidden;
    box-shadow: var(--ps-shadow-card);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
    position: relative;
    display: flex;
    margin-bottom: 50px;

    flex-direction: column;
    height: 100%;
}
.ps-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ps-shadow-hover);
}

/* Image */
.ps-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    border-radius: var(--ps-radius-img) var(--ps-radius-img) 0 0;
    transition: transform 0.35s ease;
}
.ps-card:hover .ps-card-img {
    transform: scale(1.04);
}
.ps-card-img-wrap {
    overflow: hidden;
    border-radius: var(--ps-radius-img) var(--ps-radius-img) 0 0;
    position: relative;
}
/* Overlay shimmer on hover */
.ps-card-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(201, 168, 76, 0.15) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.28s;
    border-radius: inherit;
}
.ps-card:hover .ps-card-img-wrap::after {
    opacity: 1;
}

/* Body */
.ps-card-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}
.ps-card-type {
    font-family: var(--ps-font-body);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ps-gold-dark);
}
.ps-card-name {
    font-family: var(--ps-font-title);
    font-size: 1.10rem;
    font-weight: 600;
    color: var(--ps-ink);
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ps-card-desc {
    font-family: var(--ps-font-body);
    font-size: 12.5px;
    color: #6b6b85;
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ps-card-footer {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.ps-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ps-font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--ps-ink);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 100px;
    background-color: #2c1a0e;
    color: #fff;
    letter-spacing: 0.02em;
    transition:
        background 0.22s,
        transform 0.18s;
}

.ps-card-cta:hover {
    background: var(--ps-gold);
    color: #fff;
    transform: scale(1.03);
    text-decoration: none;
}
.ps-card-cta svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    transition: transform 0.2s;
}
.ps-card-cta:hover svg {
    transform: translateX(3px);
}



/* Empty state */
.ps-empty {
    text-align: center;
    padding: 48px 20px;
    color: #9a9ab5;
    font-family: var(--ps-font-body);
    font-size: 14px;
}

/* ─── Responsive ─── */
@media (max-width: 767px) {
    .ps-section {
        padding: 48px 0 56px;
    }
    .ps-owl-wrap .owl-nav {
        top: -46px;
    }
    .ps-slider-label h3 {
        font-size: 1.25rem;
    }
}
/* ///////////  products slider css end ///////////////////////// */
