@import url('https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400..700;1,400..700&family=Caveat:wght@400..700&family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Marcellus&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Outfit:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Yeseva+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700;800;900&display=swap');

:root {
    --bg: #F7F3EE;
    --bg-light: #FAF7F2;
    --white: #ffffff;

    --dark: #253037;
    --dark-light: #34434b;

    --gold: #C47B35;
    --gold-light: #D99A5B;

    --muted: #6B6965;

    --shadow-dark: rgba(37, 48, 55, 0.10);
    --shadow-gold: rgba(196, 123, 53, 0.10);
}

body {
    font-family: "Josefin Sans", sans-serif;

    font-style: normal;
}


/* =========================
   Navbar Styling
========================= */

.navbar {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.navbar-brand img {
    /* max-height: 70px; */
    width: auto;
}

/* Nav Links */
.navbar .navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #222222;
    padding: 10px 18px;
    transition: 0.3s ease;
    position: relative;
}

/* Hover Effect */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #F27C12 !important;
}

/* Dropdown */
.navbar .dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    margin-top: 10px;
}

.navbar .dropdown-menu .dropdown-item {
    font-size: 15px;
    font-weight: 500;
    color: #222;
    padding: 10px 20px;
    transition: 0.3s;
}

/* Dropdown Hover */
.navbar .dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: #F27C12;
}

@media(min-width:992px) {

    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

}

/* Search Box */

.navbar .navbar-collapse {
    /* text-align: center; */


}

.navbar .navbar-nav {
    margin: 0 auto;
}


.search-form {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
}

.search-box {
    position: relative;
    width: 250px;
    margin-left: auto;


}

.search-box .form-control {
    width: 100%;
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 10px 45px 10px 18px;
    font-size: 14px;
    box-shadow: none;
}

.search-box .form-control:focus {
    border-color: #F27C12;
    box-shadow: none;
}

/* Search Icon Button */
.search-btn {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #F27C12;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
}

.search-btn:hover {
    color: #d96d00;
}


/* Mobile Toggle */
.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar .navbar-nav {
        padding-top: 15px;
    }

    .navbar form {
        margin-top: 15px;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}


/* jute-collection section  */


.jute-space-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #fcfaf6, #f8f6f2);
    position: relative;
    overflow: hidden;
}

/* Decorative background effect */
.jute-space-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(242, 124, 18, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.jute-space-section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: rgba(242, 124, 18, 0.04);
    border-radius: 50%;
    z-index: 0;
}

/* Section Heading */

.section-heading {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto 60px;
}

.section-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #F27C12;
    margin-bottom: 18px;
    position: relative;
}


.section-heading p {
    font-size: 16px;
    color: #222222;
    line-height: 1.8;
    font-weight: 500;
}

/* Space Card */

.space-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    transition: 0.5s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    z-index: 2;
    animation: floatCard 4s ease-in-out infinite;
}

.space-card:nth-child(2) {
    animation-delay: 0.5s;
}

.space-card:nth-child(3) {
    animation-delay: 1s;
}

.space-card:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

.space-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}

.space-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.space-card:hover img {
    transform: scale(1.05);
}

/* Overlay */

.space-overlay {
    position: absolute;
    width: 68%;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    padding: 18px;
    text-align: center;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.3s;
}

.space-card:hover .space-overlay {
    background: rgba(255, 255, 255, 0.55);
}

.space-overlay h4 {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */

@media (max-width: 991px) {
    .jute-space-section {
        padding: 70px 0;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .space-card img {
        height: 360px;
    }

    .space-overlay h4 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .section-heading h2 {
        font-size: 28px;
    }

    .space-card img {
        height: 300px;
    }

    .space-overlay {
        width: 80%;
        padding: 14px;
    }

    .space-overlay h4 {
        font-size: 16px;
    }
}

/* =========================================
  Best  Product Section
============================================ */

.prm-uptitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    color: #F27C12;
    font-weight: 700;
    margin-bottom: 10px;
}

.prm-section-title {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0px;
}

.prm-marquee-wrapper {
    padding: 60px 0;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

.prm-marquee-track {
    display: flex;
    width: calc(300px * 10);
    animation: scrollMarquee 30s linear infinite;
}


.prm-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 5));
    }

}


.prm-mq-card {
    width: 450px;
    flex-shrink: 0;
    padding: 0 10px;
    position: relative;
    transition: 0.4s ease;
}

.prm-mq-image-box {
    position: relative;
    height: 480px;
    overflow: hidden;
    border-radius: 4px;
}

.prm-mq-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.prm-mq-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    padding: 15px;
    text-align: left;
    border-radius: 2px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.prm-mq-card:hover .prm-mq-overlay {
    opacity: 1;
    transform: translateY(0);
}

.prm-mq-card:hover img {
    transform: scale(1.08);
}

.prm-mq-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prm-mq-price {
    color: #F27C12;
    font-weight: 600;
    font-size: 14px;
}

.prm-marquee-wrapper::before,
.prm-marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.prm-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.prm-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

@media (max-width: 768px) {
    .prm-marquee-wrapper .text-md-end {
        text-align: left !important;
        margin-top: 20px;
    }

    .prm-section-title {
        font-size: 28px;
    }
}


/* =========================================
    Product Section
    ============================================ */

.circle-cat-section {
    padding: 80px 0;
    background: #fdfcfb;
    overflow: hidden;
}

.circle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
}

.circle-item {
    flex: 1;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* The Circular Image Container */
.circle-img-wrapper {
    width: 220px;
    height: 220px;
    margin: 0 auto 25px;
    border-radius: 50%;
    position: relative;
    padding: 10px;
    border: 1px solid rgba(242, 124, 18, 0.2);
    transition: 0.5s;
}

.circle-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    /* filter: grayscale(100%); */
    transition: 0.6s ease;
}

/* Decorative Ring Animation */
.circle-item::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 240px;
    height: 240px;
    border: 2px dashed #F27C12;
    border-radius: 50%;
    transform: translateX(-50%) scale(0.9);
    opacity: 0;
    transition: 0.6s;
    animation: rotateRing 15s linear infinite;
}

@keyframes rotateRing {
    from {
        transform: translateX(-50%) rotate(0deg);
    }

    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

/* Category Text Styling */
.circle-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 15px;
}

.circle-explore {
    font-size: 12px;
    color: #F27C12;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.4s;
    display: inline-block;
    border-bottom: 1px solid #F27C12;
}

/* Interaction */
.circle-item:hover {
    transform: translateY(-15px);
}

.circle-item:hover .circle-img-wrapper {
    border-color: #F27C12;
    background: #fff;
    box-shadow: 0 20px 40px rgba(242, 124, 18, 0.15);
}

.circle-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.circle-item:hover::after {
    opacity: 0.4;
    transform: translateX(-50%) scale(1.05);
}

.circle-item:hover .circle-explore {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .circle-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .circle-item {
        flex: 0 0 45%;
        margin-bottom: 40px;
    }
}


/* best -seller product  */



.best-seller-marquee {
    padding: 100px 0;
    background: #faf8f4;
    overflow: hidden;
}

.best-seller-marquee .section-heading {
    margin-bottom: 50px;
}

.best-seller-marquee .section-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #F18102;
    margin-bottom: 15px;
}

.best-seller-marquee .section-heading p {
    font-size: 16px;
    color: #555;
}

/* Marquee Wrapper */

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    margin-bottom: 30px;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: scroll 20s linear infinite;
    will-change: transform;
}

/* Moving Left */

.marquee-left .marquee-track {
    animation-direction: normal;
}

.marquee-right .marquee-track {
    animation-direction: reverse;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* Cards */

.seller-card {
    min-width: 280px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
    transition: 0.4s;
}



.seller-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.seller-card:hover img {
    transform: scale(1.1);
}

.seller-card h4 {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    margin: 0;
    color: #222;
}



/* Responsive */

@media (max-width: 768px) {
    .seller-card {
        min-width: 220px;
    }

    .seller-card img {
        height: 200px;
    }

    .best-seller-marquee .section-heading h2 {
        font-size: 30px;
    }
}



/* ===============================
   COLLECTIONS IN FOCUS SECTION
================================== */
/* =================================
   COLLECTIONS IN FOCUS SECTION
================================= */

.focus-section {
    background: #fcfaf6;
    padding: 60px 0;
    overflow: hidden;
}

.focus-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 20px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
}

/* =================================
   RIGHT SIDE SCROLLING MARQUEE
================================= */

.focus-scroll-pane {
    flex: 0 0 320px;
    height: 700px;

    overflow: hidden;
    position: relative;

    margin-left: auto;

    display: flex;
    justify-content: flex-end;
}

/* FAST MARQUEE SPEED */

.marquee-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    animation: verticalMarquee 6s linear infinite;
}

.focus-scroll-pane:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes verticalMarquee {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* =================================
   MARQUEE ITEMS
================================= */

.focus-item {
    display: flex;
    justify-content: flex-end;
    align-items: center;

    flex-shrink: 0;
}

.focus-img-wrapper {
    width: 220px;
    height: 220px;

    overflow: hidden;
    border-radius: 14px;

    flex-shrink: 0;
}

.focus-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.8s ease;
}

.focus-item:hover .focus-img-wrapper img {
    transform: scale(1.08);
}

/* =================================
   LABEL
================================= */

.focus-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #222;
    margin: 0;
}

/* =================================
   LEFT STICKY CONTENT
================================= */

.focus-sticky-pane {
    flex: 1;
    position: sticky;
    top: 100px;
}

.sticky-inner {
    width: 100%;
}

.focus-title {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 700;
    color: #111;

    margin-bottom: 25px;

    font-family: 'Poppins', sans-serif;
}

.focus-title span {
    font-style: italic;
    font-weight: 300;
    color: #F27C12;
}

/* =================================
   MAIN IMAGE
================================= */

.focus-main-img {
    width: 100%;
    overflow: hidden;

    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.focus-main-img img {
    width: 100%;
    height: 620px;

    object-fit: cover;
    display: block;

    transition: transform 0.5s ease;
}

.focus-main-img:hover img {
    transform: scale(1.06);
}

/* =================================
   TABLET
================================= */

@media (max-width: 991px) {

    .focus-container {
        flex-direction: column;
        gap: 50px;
    }

    .focus-sticky-pane {
        position: relative;
        top: 0;
        width: 100%;
    }

    .focus-title {
        font-size: 42px;
        text-align: center;
    }

    .focus-main-img img {
        height: 500px;
    }

    .focus-scroll-pane {
        /* width: 100%; */
        /* height: 280px; */

        margin-left: 0;
    }

    .marquee-content {
        flex-direction: row;
        width: max-content;
        gap: 18px;

        animation: horizontalMarquee 18s linear infinite;
    }

    .focus-item {
        justify-content: center;
    }

    .focus-img-wrapper {
        width: 180px;
        height: 180px;
    }

    @keyframes horizontalMarquee {

        0% {
            transform: translateX(0%);
        }

        100% {
            transform: translateX(-50%);
        }
    }
}

/* =================================
   MOBILE
================================= */

@media (max-width: 576px) {

    .focus-section {
        padding: 50px 0;
    }

    .focus-container {
        padding: 0 15px;
        gap: 35px;
    }

    .focus-title {
        font-size: 30px;
        text-align: center;
        margin-bottom: 20px;
    }

    .focus-main-img img {
        height: 320px;
    }

    .focus-scroll-pane {
        /* height: 180px; */
    }

    .focus-img-wrapper {
        width: 140px;
        height: 140px;
        border-radius: 10px;
    }

    .focus-label {
        font-size: 11px;
        letter-spacing: 1px;
    }
}


/* certification section  */

.certification-section {
    padding: 60px 0;
    background: #fff;
}

.cert-marquee {
    overflow-x: hidden;
    overflow-y: visible;

    position: relative;

    padding-top: 10px;
}

/* fade edges (premium effect) */
.cert-marquee::before,
.cert-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.cert-marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.cert-marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

/* =================================
   CERTIFICATION MARQUEE
================================= */

.cert-track {
    display: flex;
    gap: 40px;
    align-items: center;
    width: max-content;

    /* SLOWER SPEED */
    animation: certScroll 80s linear infinite;

    will-change: transform;
}

/* SMOOTH MARQUEE */

@keyframes certScroll {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =================================
   CERTIFICATION ITEM DESIGN
================================= */

.certification_box1 {
    position: relative;

    padding: 10px;
    border-radius: 15px;

    background: #ecf0f3;

    overflow: visible;

    transition: all 0.4s ease;

    box-shadow:
        10px 10px 20px #cbced1,
        -10px -10px 20px #ffffff;
}

/* IMAGE */

.certification_box1 img {
    width: 100%;
    height: 150px;
    object-fit: contain;

    border-radius: 10px;

    transition: transform 0.4s ease;
}

/* IMAGE HOVER */

.certification_box1:hover img {
    transform: scale(1.05);
}

/* LEFT ORANGE LINE */

.certification_box1::before {
    content: "";
    position: absolute;

    left: 0;
    bottom: 0;

    width: 3px;
    height: 0%;

    background: #EF7B00;

    transition: height 0.4s ease;
}

/* TOP ORANGE LINE */

.certification_box1::after {
    content: "";
    position: absolute;

    top: 0;
    left: 0;

    width: 0%;
    height: 3px;

    background: #EF7B00;

    transition: width 0.4s ease 0.4s;
}

/* HOVER EFFECT */

.certification_box1:hover::before {
    height: 100%;
}

.certification_box1:hover::after {
    width: 100%;
}

/* CARD HOVER */

.certification_box1:hover {
    transform: translateY(-8px);
}

/* =========================
 Footer Styling
========================= */

.footer-section {
    background: #fdfbf8;
    color: #333333;
    font-family: inherit;
}

/* Map */
.footer-section iframe {
    display: block;
    width: 100%;
    border: 0;
    filter: grayscale(10%);
}

/* Footer Widget Area */
.footer-widgets {
    padding: 70px 0 50px;
    background: #ffffff;
}

/* Footer Box */
.footer-box {
    margin-bottom: 30px;
}

.footer-logo img {
    max-height: 75px;
    width: auto;
    margin-bottom: 20px;
}

.footer-box p {
    font-size: 15px;
    line-height: 1.9;
    color: #222222;
    margin-bottom: 0;
    font-weight: 500;
}

/* Headings */
.footer-box h4,
.footer-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #F27C12;
    position: relative;
}

/* Footer Lists */
.footer-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-box ul li {
    margin-bottom: 14px;
}

.footer-box ul li a {
    text-decoration: none;
    color: #222222;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease;
}

.footer-box ul li a:hover {
    color: #F27C12;
    padding-left: 5px;
}

/* Contact Section */
.text-gold {
    color: #F27C12;
    font-size: 17px;
    margin-top: 3px;
}

.footer-box .d-flex p,
.footer-box .d-flex a {
    font-size: 15px;
    color: #222222 !important;
    text-decoration: none;
    line-height: 1.7;
    transition: 0.3s;
    font-weight: 500;
}

.footer-box .d-flex a:hover {
    color: #F27C12 !important;
}

/* Bottom Footer */
.footer-bottom {
    background: #faf7f2;
    border-top: 1px solid #eeeeee;
    text-align: center;
    padding: 22px 15px;
    font-size: 14px;
    color: #222222;
    font-weight: 500;
}

.designer-link {
    color: #F27C12;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.designer-link:hover {
    color: #F27C12;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-widgets {
        padding: 50px 0 30px;
    }

    .footer-box h4,
    .footer-title {
        margin-bottom: 18px;
        font-size: 20px;
    }

    .footer-section iframe {
        height: 350px;
    }
}



/*Contact page desing*/

.contact_box p {
    color: #000;
    font-weight: 300;
}


/*about page desing*/

/* ABOUT IMAGE */

.abt-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.abt-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;

    border-radius: 20px;

    transition: all 0.6s ease;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.abt-img:hover img {
    transform: scale(1.04);
}

/* RESPONSIVE */

@media (max-width: 991px) {

    .abt-img img {
        height: 450px;
        margin-top: 40px;
    }
}

@media (max-width: 576px) {

    .abt-img img {
        height: 320px;
        border-radius: 14px;
    }
}

.about-title span {
    color: #EF7B00;
    font-weight: 500;
    text-transform: uppercase;
}

.about-title h2 {

    font-weight: 600;
    font-family: "Playfair Display", serif;
}

.about_art {
    background: #FAF7F2;
    padding: 1.7rem 1rem;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

/* Top border animation */
.about_art::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background-color: #EF7B00;
    transition: width 0.4s ease;
}

/* Hover effect */
.about_art:hover::before {
    width: 100%;
}

.about_art:hover {
    border-bottom: 1px solid #EF7B00;
    border-left: 1px solid #EF7B00;
    border-right: 1px solid #EF7B00;
    transition: 0.5s;
}

.about_art p {
    color: #000 !important;
    font-weight: 400;
}

.about_art_img {
    width: 80px;
    height: 80px;
    background: #EF7B00;
    border-radius: 50%;
    margin-top: 1rem;
}

.about_art_img img {
    width: 100%;
    height: 100%;
    padding: 0.8rem;
}

.founder-signature {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #EF7B00;
    font-style: italic;
}

.year-badge {
    display: inline-block;
    background: #000;
    color: white;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.year-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.year-badge:hover::before {
    left: 100%;
}

.about_main h1 {
    font-weight: 700;
    letter-spacing: 3px;
    word-spacing: 2px;
    font-family: "Playfair Display", serif;
    color: #EF7B00;
    font-size: 2rem;
    text-transform: capitalize;
}

/* Section Background */
.certification_bg {
    background: #FAF7F2;
}

/* Heading */
.certification_section span {
    font-weight: 700;
    color: #EF7B00;
    letter-spacing: 1px;
}

.certification_section h1 {
    font-weight: 700;
    letter-spacing: 3px;
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
}

/* Card Design */
.certification_box {
    position: relative;
    padding: 10px;
    background: #ecf0f3;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 10px 10px 20px #cbced1, -10px -10px 20px #ffffff;
}

/* Image */
.certification_box img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.certification_box:hover img {
    transform: scale(1.05);
}

/* LEFT BORDER (Bottom → Top) */
.certification_box::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3px;
    height: 0%;
    background: #EF7B00;
    transition: height 0.4s ease;
}

/* TOP BORDER (Left → Right) */
.certification_box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: #EF7B00;
    transition: width 0.4s ease 0.4s;
}

/* Hover Trigger */
.certification_box:hover::before {
    height: 100%;
}

.certification_box:hover::after {
    width: 100%;
}

/* Card Hover */
.certification_box:hover {
    transform: translateY(-8px);
}

/* products pages  */

.luxury-hero {
    padding: 120px 0 120px;
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at top right,
            rgba(196, 123, 53, 0.16),
            transparent 35%),

        radial-gradient(circle at bottom left,
            rgba(37, 48, 55, 0.08),
            transparent 30%),

        linear-gradient(135deg,
            #ffffff 0%,
            #FBF7F1 45%,
            #F4ECE2 100%);
}

/* GOLD GLOW */

.luxury-hero::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(196, 123, 53, 0.14),
            transparent 70%);

    top: -300px;
    right: -150px;

    pointer-events: none;
}

/* DARK DEPTH */

.luxury-hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(37, 48, 55, 0.06),
            transparent 70%);

    bottom: -250px;
    left: -120px;

    pointer-events: none;
}

/* =========================================================
HERO DECORATIVE TEXT
========================================================= */

.hero-decorative-text {
    position: absolute;
    font-size: 18vw;
    font-weight: 900;
    top: 8%;
    left: -2%;
    z-index: 0;
    pointer-events: none;

    font-family: 'Playfair Display', serif;
    white-space: nowrap;
    letter-spacing: -8px;

    background:
        linear-gradient(180deg,
            rgba(196, 123, 53, 0.12),
            rgba(37, 48, 55, 0.03));

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================================================
MAIN TITLE
========================================================= */

.luxury-main-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    line-height: 0.88;
    font-size: clamp(3.5rem, 10vw, 7rem);

    position: relative;
    z-index: 2;

    color: var(--dark);
    letter-spacing: -4px;
}

/* GOLD WORD */

.luxury-main-title span {
    color: var(--gold);
    font-style: italic;
    font-weight: 700;
    position: relative;
}

/* GLOW UNDERLINE */

.luxury-main-title span::after {
    content: "";
    position: absolute;

    width: 100%;
    height: 14px;

    background:
        linear-gradient(to right,
            rgba(196, 123, 53, 0.18),
            rgba(196, 123, 53, 0.05));

    left: 0;
    bottom: 10px;

    z-index: -1;
    border-radius: 50px;
}

.breadcrumb-luxury {
    letter-spacing: 6px;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #C47B35;
}

.breadcrumb-luxury a {
    color: #C47B35;
    text-decoration: none;
    transition: 0.3s ease;
    position: relative;
}

.breadcrumb-luxury a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: #C47B35;
    transition: 0.3s ease;
}

.breadcrumb-luxury a:hover::after {
    width: 100%;
}

.breadcrumb-luxury .divider {
    opacity: 0.5;
}

.breadcrumb-luxury span {
    color: #253037;
}

/* =========================================================
TOP TAG
========================================================= */

.luxury-hero span.text-uppercase {
    color: var(--gold);
    opacity: .95;
}

/* =========================================================
DIVIDER
========================================================= */

.hero-line {
    width: 90px;
    height: 3px;
    margin-top: 45px;

    position: relative;
    border-radius: 10px;

    background:
        linear-gradient(to right,
            var(--gold),
            rgba(196, 123, 53, 0.2));
}

/* EXTENSION */

.hero-line::after {
    content: '';

    position: absolute;
    width: 180px;
    height: 1px;

    background:
        linear-gradient(to right,
            rgba(37, 48, 55, 0.15),
            transparent);

    left: 110px;
    top: 1px;
}

/* =========================================================
DESCRIPTION
========================================================= */

.hero-description {
    font-size: 1.08rem;
    line-height: 2;

    color: var(--muted);

    position: relative;
    padding-left: 35px;
}

/* LEFT LINE */

.hero-description::before {
    content: "";

    position: absolute;
    width: 1px;
    height: 100%;

    left: 0;
    top: 0;

    background:
        linear-gradient(to bottom,
            var(--gold),
            rgba(196, 123, 53, 0.1));
}

/* =========================================================
ARCHIVE SECTION
========================================================= */

.archive-section {
    padding: 120px 0;

    background:
        linear-gradient(180deg,
            #FAF7F2 0%,
            #ffffff 100%);
}

/* =========================================================
STAGGER WRAPPER
========================================================= */

.stagger-img-wrapper {
    position: relative;
    padding: 40px;
    perspective: 1000px;
}

/* =========================================================
DECORATIVE FRAME
========================================================= */

.deco-frame {
    position: absolute;

    top: 0;
    left: 0;

    width: 70%;
    height: 90%;

    border: 1px solid rgba(196, 123, 53, 0.35);

    background:
        linear-gradient(135deg,
            rgba(196, 123, 53, 0.04),
            transparent);

    z-index: 0;

    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

/* RIGHT FRAME */

.frame-right {
    left: auto;
    right: 0;
}

/* =========================================================
IMAGE BOX
========================================================= */

.art-img-box {
    position: relative;
    z-index: 1;

    overflow: hidden;
    border-radius: 10px;

    box-shadow:
        0 30px 80px rgba(37, 48, 55, 0.10),
        0 10px 25px rgba(196, 123, 53, 0.08);
}

/* IMAGE HEIGHT */

.featured-box {
    height: 700px;
}

/* IMAGE */

.art-img-box img {
    width: 100%;
    height: 110%;

    object-fit: cover;

    transition:
        transform 0.8s ease,
        filter 0.8s ease;

    transform: scale(1.02);
}

/* HOVER */

.art-img-box:hover img {
    transform: scale(1.08);
    filter: brightness(1.03);
}

/* =========================================================
GLASS CARD
========================================================= */

.info-card-glass {

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.80),
            rgba(255, 255, 255, 0.60));

    backdrop-filter: blur(14px);

    padding: 45px;

    margin-top: -100px;
    margin-left: 50px;

    position: relative;
    z-index: 5;

    border:
        1px solid rgba(255, 255, 255, 0.6);

    border-radius: 14px;

    box-shadow:
        0 20px 60px rgba(37, 48, 55, 0.08),
        0 8px 20px rgba(196, 123, 53, 0.05);

    transition: all 0.5s ease;
}

/* HOVER */

.info-card-glass:hover {
    transform: translateY(-8px);

    box-shadow:
        0 30px 80px rgba(37, 48, 55, 0.12),
        0 12px 25px rgba(196, 123, 53, 0.08);
}

/* REVERSE */

.reversed-info {
    margin-left: 0;
    margin-right: 50px;
    margin-top: -100px;
}

/* =========================================================
SERIAL NUMBER
========================================================= */

.serial-no {
    font-size: 11px;
    letter-spacing: 5px;

    color: var(--gold);

    text-transform: uppercase;
    font-weight: 700;

    margin-bottom: 15px;

    display: block;
}

/* =========================================================
ITEM TITLE
========================================================= */

.item-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;

    margin-bottom: 20px;

    color: var(--dark);
}

/* =========================================================
TEXT
========================================================= */

.text-muted {
    color: #756F6A !important;
    line-height: 1.9;
}

/* =========================================================
PRICE
========================================================= */

.h3 {
    color: var(--dark);
}

/* =========================================================
CIRCLE BUTTON
========================================================= */

.circle-btn {
    width: 100px;
    height: 100px;

    border:
        1px solid rgba(37, 48, 55, 0.2);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    color: var(--dark);

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;

    letter-spacing: 2px;

    transition: all 0.5s ease;

    position: relative;
    overflow: hidden;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.9),
            rgba(255, 255, 255, 0.5));

    backdrop-filter: blur(10px);

    box-shadow:
        0 8px 20px rgba(196, 123, 53, 0.08);
}

/* HOVER EFFECT */

.circle-btn::before {
    content: '';

    position: absolute;

    width: 0;
    height: 0;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            var(--dark),
            var(--dark-light));

    transition: 0.6s ease;

    z-index: -1;
}

/* HOVER */

.circle-btn:hover::before {
    width: 250px;
    height: 250px;
}

.circle-btn:hover {
    color: #fff;
    border-color: transparent;

    transform:
        translateY(-5px) scale(1.05);

    box-shadow:
        0 15px 40px rgba(37, 48, 55, 0.25),
        0 5px 20px rgba(196, 123, 53, 0.15);
}

/* =========================================================
REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(80px);

    transition:
        opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1),
        transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
GLOW ANIMATION
========================================================= */

.reveal.active .info-card-glass {
    animation: glowCard 1.5s ease;
}

@keyframes glowCard {

    0% {
        box-shadow:
            0 0 0 rgba(196, 123, 53, 0);
    }

    50% {
        box-shadow:
            0 25px 80px rgba(196, 123, 53, 0.12);
    }

    100% {
        box-shadow:
            0 20px 60px rgba(37, 48, 55, 0.08);
    }
}

/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .luxury-hero {
        padding: 120px 0 60px;
    }

    .hero-description {
        padding-left: 0;
        margin-top: 35px;
    }

    .hero-description::before {
        display: none;
    }

    .hero-decorative-text {
        display: none;
    }

    .luxury-main-title {
        letter-spacing: -2px;
    }

    .featured-box {
        height: 450px;
    }

    .info-card-glass {
        margin: -50px 15px 0;
        padding: 30px;
    }

    .reversed-info {
        margin-right: 15px;
    }

    .item-title {
        font-size: 2.2rem;
    }

    .circle-btn {
        width: 85px;
        height: 85px;
        font-size: 10px;
    }
}

@media (max-width: 576px) {

    .luxury-main-title {
        font-size: 3rem;
    }

    .featured-box {
        height: 350px;
    }

    .stagger-img-wrapper {
        padding: 15px;
    }

    .item-title {
        font-size: 1.8rem;
    }

    .hero-line::after {
        display: none;
    }
}

/* New Product Grid System */
.product-grid-refined {
    padding: 100px 0;
    background-color: #ffffff;
}

.luxury-card-v2 {
    position: relative;
    margin-bottom: 60px;
    transition: transform 0.4s ease;
}

.luxury-card-v2 .img-container {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.luxury-card-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.luxury-card-v2:hover img {
    transform: scale(1.1);
}

.product-info-v2 {
    padding-top: 25px;
    text-align: center;
}

.product-info-v2 .category {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.product-info-v2 .title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.product-info-v2 .price {
    font-weight: 300;
    color: var(--muted);
}

/* =========================
   INFINITE FLOATING TEXT
========================= */

.marquee-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 250px;

    display: flex;
    align-items: center;
}

/* TRACK */
.marquee-track {
    display: flex;
    width: max-content;

    animation: marqueeLoop 30s linear infinite;

    will-change: transform;
}

/* ORIGINAL TEXT STYLE */
.floating-text {
    position: relative;

    font-family: 'Playfair Display', serif;
    font-weight: 900;

    color: rgba(196, 123, 53, 0.03);

    -webkit-text-stroke: 1.5px rgba(196, 123, 53, 0.3);

    text-transform: uppercase;
    letter-spacing: 15px;

    white-space: nowrap;

    font-size: 12vw;
    line-height: 1;

    padding-right: 120px;

    flex-shrink: 0;

    pointer-events: none;
    user-select: none;
}

/* INFINITE LOOP */
@keyframes marqueeLoop {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- CTA LUXURY SECTION --- */
.cta-luxury {
    padding: 80px 0;
    background-color: #253037;
    /* Dark Charcoal base */
    position: relative;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
}

/* Glassmorphic Box */
.cta-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 40px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.cta-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #C47B35;
    /* Gold accents */
    display: block;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 25px;
}

.cta-title span {
    font-style: italic;
    color: #C47B35;
}

.cta-description {
    max-width: 600px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary-btn {
    background: #C47B35;
    color: #fff;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s ease;
    border: 1px solid #C47B35;
}

.cta-primary-btn:hover {
    background: transparent;
    color: #C47B35;
}

.cta-outline-btn {
    background: transparent;
    color: #fff;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s ease;
}

.cta-outline-btn i {
    margin-right: 10px;
    font-size: 0.9em;
}

.cta-outline-btn:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* Decorative Blur Elements */
.cta-blur {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.4;
}

.blur-one {
    background: #C47B35;
    top: -100px;
    left: -100px;
}

.blur-two {
    background: #1165AB;
    /* Your tech-blue for cinematic depth */
    bottom: -100px;
    right: -100px;
}

@media (max-width: 768px) {
    .cta-box {
        padding: 50px 20px;
    }
}

/* product-detail  */

/* Typography & Titles */
.acc-uptitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    color: #F27C12;
    font-weight: 700;
    margin-bottom: 10px;
}

.acc-section-title {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0px;
}

.acc-view-all {
    color: #c47b35;
    /* Your boutique accent color */
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

/* Marquee Structure */
.acc-marquee-wrapper {
    padding: 80px 0;
    background: linear-gradient(to bottom, #fcfaf6, #f8f6f2);
    overflow: hidden;
}

.acc-marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.acc-marquee-track {
    display: flex;
    width: max-content;
    /* 20s-30s is usually the 'sweet spot' for speed */
    animation: infiniteScroll 25s linear infinite;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* This moves exactly the length of one original set of cards */
        transform: translateX(-50%);
    }
}

/* Stops the animation on hover so users can click products */
.acc-marquee-track:hover {
    animation-play-state: paused;
}

/* Card Styling */
.acc-mq-card {
    width: 320px;
    /* Consistent width */
    flex-shrink: 0;
    padding: 0 15px;
}

.acc-mq-image-box {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 4px;
    background: #f7f6f2;
}

.acc-mq-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.acc-mq-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 15px;
    border-radius: 2px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
}

.acc-mq-card:hover .acc-mq-overlay {
    opacity: 1;
    transform: translateY(0);
}

.acc-mq-card:hover img {
    transform: scale(1.1);
}

.acc-mq-title {
    font-size: 15px;
    font-weight: 700;
    color: #253037;
    margin: 0;
    text-transform: uppercase;
}

.acc-mq-price {
    color: #F27C12;
    font-weight: 600;
    font-size: 14px;
}

/* Edge Fades */
.acc-marquee-container::before,
.acc-marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.acc-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.acc-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

/* Responsive */
@media (max-width: 768px) {
    .acc-section-title {
        font-size: 28px;
    }

    .acc-mq-card {
        width: 260px;
    }

    .acc-mq-image-box {
        height: 350px;
    }
}

.product-info-sticky {
    position: sticky;
    top: 100px;
}

.text-gold {
    color: #F27C12 !important;
}

/* Gallery Styling */
.gallery-thumbnails .thumb-item {
    width: 80px;
    height: 80px;
    border: 1px solid #eee;
    cursor: pointer;
    overflow: hidden;
    transition: 0.3s;
    border-radius: 4px;
}

.gallery-thumbnails .thumb-item:hover,
.gallery-thumbnails .thumb-item.active {
    border-color: #F27C12;
}

.gallery-thumbnails img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-image-container {
    background: #f9f9f9;
    border-radius: 8px;
    transition: 0.5s ease;
}

.main-product-img {
    transition: transform 0.8s ease;
    cursor: zoom-in;
}

.main-product-img:hover {
    transform: scale(1.15);
}

.badge-handcrafted {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #F27C12;
    color: #fff;
    padding: 5px 15px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    z-index: 5;
    border-radius: 2px;
}

/* Swatches */
.color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px #ddd;
    transition: 0.3s;
}

.color-swatch.active {
    box-shadow: 0 0 0 2px #F27C12;
}

/* Action Button */
.btn-prm-action {
    background: #253037;
    /* Charcoal from your palette */
    border: none;
    letter-spacing: 2px;
    font-weight: 600;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-prm-action:hover {
    background: #F27C12;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(242, 124, 18, 0.2);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .product-gallery {
        flex-direction: column-reverse;
    }

    .gallery-thumbnails {
        flex-direction: row !important;
        justify-content: center;
    }

    .prm-section-title {
        font-size: 28px;
    }
}