/* HEADER SECTION START HERE */

.header-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9998;
    background-color: #fff;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    box-shadow: none;
}

.header-main {
    display: flex;
    justify-content: end;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: padding 0.3s ease;
    width: 90%;
    margin: auto;
    transition: all 0.4s ease;
}

/* LOGO */
.logo img {
    width: 95px !important;
}

/* NAVIGATION */
nav {
    background: white;
    width: 100%;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    border-radius: 20px;
    height: 41px;
    justify-content: center;
}

.nav-links {
    justify-content: end;
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    gap: 40px;
    list-style: none;
    margin-top: 14px;
    margin-left: -30px;
}

.menu li a {
    text-decoration: none;
    color: #444;
    font-weight: 430;
    position: relative;
    transition: all 0.3s ease;
    font-size: 14px !important;
    font-family: "Poppins", sans-serif !important;
}

.menu li a:hover {
    color: var(--Blue) !important;
}

.menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #0f0f0f;
    transition: width 0.3s;
}

.menu li a:hover::after {
    width: 100%;
}

.menu li a.active {
    color: var(--Blue);
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 20;
}

.hamburger span {
    width: 25px;
    height: 2.5px;
    background: #111;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    gap: 20px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

/* HAMBURGER ACTIVE ANIMATION */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }
}

/* HEADER SECTION END HERE */

/* HERO SECTION START HERE */

.bottle-img {
    object-fit: contain;
    max-height: 500px;
    transition: transform 0.7s ease, opacity 0.4s ease, filter 0.4s ease;
    filter: blur(3px);
    opacity: 0.3;
    transform: scale(0.75);
}

.hero-section {
    margin-top: 70px;
}

.bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: background-image 1s ease-in-out;
}

.splide__slide.is-active .bottle-img {
    filter: blur(0);
    opacity: 1;
    transform: scale(1.1) rotate(-10deg);
}

.hero-bottle-slider {
    margin-top: 30px;
}

/*  */

.hero-section {
    position: relative;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    /* content front il varan */
}

/* Text content */

.hero-text {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* border: 1.7px solid #ffffff6e; */
    border-radius: 30px;
    padding: 30px;
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* Arrows styling */
.splide__arrow {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.splide__arrow svg {
    fill: #fff;
}

/*  */

.hero-text h1 {
    font-size: 42px !important;
    font-weight: 550 !important;
    color: #ffffff !important;
}

.hero-text p {
    font-size: 16px !important;
    color: #ffffffc9 !important;
}

/*  */

.s-btn {
    width: 30px;
    height: 50px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    outline: 2px solid rgb(255, 255, 255);
    box-shadow: 0px 0px 10px rgb(255, 255, 255);
    position: fixed;
    bottom: 60px;
    right: 40px;
    z-index: 466;
    transition: opacity 0.5s ease;
}

.s-btn.fade-out {
    opacity: 0;
    pointer-events: none;
}

.s-scroll {
    width: 5px;
    height: 10px;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 10px rgb(255, 255, 255);
    animation: scroll_4013 2s linear infinite;
    transform: translateY(40%);
}

.s-btn:after {
    content: 'scroll';
    position: absolute;
    top: 140%;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@keyframes scroll_4013 {
    0% {
        transform: translateY(40%);
    }

    50% {
        transform: translateY(90%);
    }
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}



.hero-main {
    padding-top: 80px;
}

/* HERO SECTION END HERE */

/* PRODUCTS SECTION START HERE */

.products-tittle h2 {
    text-align: center;
    margin-top: 30px;
}

.products-tittle p {
    max-width: 60%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 50px;
    text-align: center;
}

.products-button {
    justify-content: center;
    display: flex;
    margin-top: 30px;
}

.product-img img {
    width: 100%;
    transition: all 0.3s ease;
}

.product-img {
    overflow: hidden;
    border-radius: 15px;
}

.product-card-main {
    background-color: #ffffff;
    border-radius: 20px;
    outline: 6px solid #f1eeee;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.product-card-main:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.product-card-main:hover .product-img img {
    transform: scale(1.05);
}

.product-details {
    padding: 5px;
    margin-top: 10px;
    margin-left: 20px;
}

.product-details h6 {
    font-size: 20px;
}

.product-details p {
    margin-bottom: 2px !important;
}

.product-item-btn {
    margin-left: 10px;
    margin-top: 15px;
    padding-bottom: 10px;
}

.product-card {
    display: none;
}

.btn-conteiner {
    display: flex;
    justify-content: center;
    --color-text: #ffffff;
    --color-background: #2e2c2d;
    --color-outline: #33333380;
    --color-shadow: #00000080;
    margin-top: 30px;
}

.btn-content {
    display: flex;
    align-items: center;
    padding: 5px 30px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: var(--color-text);
    background: var(--color-background);
    transition: 1s;
    border-radius: 100px;
    box-shadow: 0 0 0.2em 0 var(--color-background);
}

.btn-title {
    color: #ffffff;
}

.btn-content:hover,
.btn-content:focus {
    transition: 0.5s;
    -webkit-animation: btn-content 1s;
    animation: btn-content 1s;
    outline: 0.1em solid transparent;
    outline-offset: 0.2em;
    box-shadow: 0 0 0.4em 0 var(--color-background);
}

.btn-content .icon-arrow {
    transition: 0.5s;
    margin-right: 0px;
    transform: scale(0.6);
}

.btn-content:hover .icon-arrow {
    transition: 0.5s;
    margin-right: 25px;
}

.icon-arrow {
    width: 20px;
    margin-left: 15px;
    position: relative;
    top: 6%;
}

/* SVG */
#arrow-icon-one {
    transition: 0.4s;
    transform: translateX(-60%);
}

#arrow-icon-two {
    transition: 0.5s;
    transform: translateX(-30%);
}

.btn-content:hover #arrow-icon-three {
    animation: color_anim 1s infinite 0.2s;
}

.btn-content:hover #arrow-icon-one {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.6s;
}

.btn-content:hover #arrow-icon-two {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */
@keyframes color_anim {
    0% {
        fill: white;
    }

    50% {
        fill: var(--color-background);
    }

    100% {
        fill: white;
    }
}

/* Button animations */
@-webkit-keyframes btn-content {
    0% {
        outline: 0.2em solid var(--color-background);
        outline-offset: 0;
    }
}

@keyframes btn-content {
    0% {
        outline: 0.2em solid var(--color-background);
        outline-offset: 0;
    }
}

/* PRODUCTS SECTION END HERE */

/* ABOUT SECTION START HERE */

.about-img-1 img {
    width: 80%;
}

.about-section {
    background-color: #ebe7e7;
    background-image: url(../assets/bg-1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    outline: 6px solid #e9e7e76b;
    margin-top: 10px;
}

.about-imgs {
    position: relative;
    z-index: 1;
}

.about-img-2 {
    position: absolute;
    z-index: 2;
    top: 0;
    margin-top: -50px;
    left: 50px;
}

.about-img-2 img {
    width: 100%;
}

.fixed-image {
    top: 50px;
    left: 50px;
    width: 150px;
    transition: transform 1s ease;
    transform-origin: center;
}

.about-btn {
    font-size: 16px;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border: 2px solid #FA9928;
    padding: 5px 10px;
    transition: all 0.3s;
    width: 21.5%;
    gap: 5px !important;
    margin-top: 25px;
}

.about-btn i {
    color: #ffffffd0;
    margin-left: 5px;
}

.about-content h2 {
    margin-top: 30px;
}

.about-p-sp {
    color: #e23232;
}

.founder-card {
    border-radius: 30px;
    margin-top: 30px;
    padding: 20px;
    background-color: #eeebebea;
    outline: 6px solid #f5f5f5;
}

.founder-card img {
    width: 100%;
    border-radius: 15px;
}

.founder-card p {
    margin-top: 30px;
}

.founder-card h5 {
    margin-top: 30px;
    font-size: 26px;
}

.founder-card h6 {
    color: #0000006e !important;
}

.story-card h3 {
    margin-top: 30px;
}

/* ACHIVMENTS */

.achievements {
    padding-top: 90px;
}

.achievements .item {
    text-align: center;
}

.achievements .item .counter {
    color: #020202ea;
    font-size: 42px;
}

.count {
    display: flex;
    justify-content: center;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}

.count h3 {
    margin-bottom: 0 !important;
    align-items: center;
    font-family: "Montserrat", sans-serif;
}

.about-content h6 {
    color: #00000094 !important;
    margin-bottom: 20px;
}

.about-content h5 {
    margin-top: 20px;
    color: #000000b6 !important;
}

.about-see-more-content {
    display: none;
}

/* ABOUT SECTION END HERE */

/* CONTACT SECTION START HERE */

.cotact-section {
    padding-top: 70px;
    background-image: url(../assets/contact-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.cotact-section h2 {
    font-size: 36px;
}

.contact-sp {
    color: #e23232;
}

.contact-spp {
    padding-right: 220px;
}

.contact-main-content {
    margin-bottom: 50px;
}

.contact-option a {
    display: flex !important;
    gap: 10px;
    color: #0000006b !important;
}

.contact-option i {
    color: #DAA06D;
}

.contact-list h2 {
    margin-bottom: 30px;
}

.contact-form {
    box-shadow: 0 12px 19px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 50px;
    background-color: #fff;
}

.conact-form input {
    width: 100%;
    border: none;
    border-radius: 30px;
    height: 50px;
    margin-bottom: 20px;
    padding-left: 30px;
    border: 1px solid #999999;
}

.conact-form textarea {
    width: 100%;
    border: none;
    border-radius: 30px;
    padding-left: 30px;
    padding-top: 1%;
    margin-bottom: 20px;
    height: 120px;
    border: 1px solid #999999;
}

.submit-btn {
    width: 30% !important;
    padding-left: 0 !important;
    background-color: #090909;
    color: #fff;
}

.socialmedia-icons {
    color: #090909;
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.contact-home-btn i {
    margin-left: 10px;
}

.contact-home-btn a {
    font-weight: 600;
    margin-left: 50px;
}

.copyright {
    border-top: 1px solid #555555a2;
    margin-top: 50px;
}

.copyright p {
    margin-top: 30px;
    margin-bottom: 30px;
}

.contact-main-div {
    margin-top: 30px;
}

.map iframe {
    width: 100%;
    border-radius: 30px;
}

.map {
    margin-top: 30px;
}

/* CONTACT SECTION END HERE */

/* FOOTER SECTION START HERE */

.footer-section {
    padding-top: 50px;
    background-color: #ffffff;
}

.ftr-1sec p {
    color: #000000af !important;
    margin-top: 20px;
}

.footer-section h5 {
    color: #000000ee !important;
    font-size: 18px !important;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 40px;
}

.footer-section ul {
    padding-left: 0 !important;
}

.footer-section li {
    margin-bottom: 20px;
}

.first-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.ftr-1sec img {
    width: 80px;
}

.second-row {
    display: flex;
    gap: 10px;
}

.first-row img {
    border-radius: 10px;
}

.copyright {
    display: flex;
    padding-top: 30px;
    padding-bottom: 20px;
    border-top: 1px solid #00000085;
    margin-top: 30px;
}

.fs {
    justify-content: end;
    display: flex;
}

.copyright p {
    color: #000000be !important;
}

.turn-no {
    color: #000000ee;
    font-weight: 350 !important;
    font-size: 14px !important;
}

.socialmedia-icons {
    color: #0f0f0f;
    display: flex;
    gap: 30px;
}

.contact-list i {
    color: #000000e3;
    margin-right: 5px;
}

.copyright h6 {
    color: #000000b2 !important;
    font-weight: 400;
}

.copyright a {
    color: #000000f1 !important;
    font-weight: 500;
}

.turn360 {
    display: inline-block;
    transition: transform 0.3s ease;
}

.copyright h6:hover .turn360 {
    transform: scale(1.1) translateX(10px);
}

.links a {
    color: #111111 !important;
    font-weight: 350 !important;
}

/* FOOTER SECTION END HERE */

/* PRODUCTS INNER START HERE */

:root {
    --p-bg: #f5f2f2;
    --p-text: #222;
    --p-muted: #666;
    --p-secondary: #837c7c;
    --p-white: #ffffff;
    --p-radius-lg: 20px;
    --p-radius-md: 12px;
    --p-shadow-soft: 0 8px 24px rgba(16, 16, 24, 0.06);
    --p-shadow-strong: 0 12px 36px rgba(16, 16, 24, 0.12);
    --p-gap: 28px;
    --p-transition: 0.36s cubic-bezier(.2, .9, .2, 1);
}

img {
    display: block;
    max-width: 100%
}

button {
    font: inherit
}

/* ===================================================================
       Header & footer placeholders (kept minimal as requested)
       =================================================================== */
header.p-header,
footer.p-footer {
    height: 88px;
    width: 100%;
    display: block;
    background: transparent;
}

/* ===================================================================
       Page container: centers content and limits width
       =================================================================== */
.p-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 100px;
}

/* ===================================================================
       Breadcrumb (centered)
       =================================================================== */
.p-breadcrumb {
    margin-top: 28px;
    margin-bottom: 50px;
    text-align: center;
    font-size: 14px;
    color: var(--p-muted);
    letter-spacing: 0.2px;
}

.p-breadcrumb a {
    color: var(--p-muted);
    opacity: 0.9;
}

.p-breadcrumb .p-current {
    color: var(--p-secondary);
    font-weight: 600;
    margin-left: 8px;
}

/* ===================================================================
       Top bar area (search + quick info)
       - visually centered on large screens, stacks on mobile
       =================================================================== */
.p-topbar {
    margin-top: 12px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

/* Search box */
.p-search {
    width: 100%;
    padding: 12px 18px;
    border-radius: 50px;
    border: 1px solid rgba(131, 124, 124, 0.15);
    background: #fff;
    box-shadow: 0 4px 12px rgba(16, 16, 24, 0.06);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
}

.p-search:focus-within {
    border-color: rgba(131, 124, 124, 0.3);
    box-shadow: 0 6px 18px rgba(16, 16, 24, 0.1);
    transform: translateY(-1px);
}

.p-search input {
    border: none;
    outline: none;
    font-size: 15px;
    flex: 1;
    background: transparent;
    color: var(--p-text);
    font-weight: 500;
}

.p-search .p-search-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(131, 124, 124, 0.06);
}

.p-search .p-clear-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.p-search .p-clear-btn:hover {
    opacity: 1;
}


/* Search suggestions dropdown */
.p-suggestions {
    position: relative;
    width: 100%;
}

.p-suggestions-list {
    position: absolute;
    left: 0;
    right: 0;
    top: 14px;
    margin-top: 8px;
    background: var(--p-white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(16, 16, 24, 0.08);
    overflow: hidden;
    z-index: 60;
    max-height: 320px;
    overflow: auto;
    transform-origin: top center;
    transition: opacity 240ms ease, transform 240ms ease;
    opacity: 0;
    transform: translateY(-6px) scaleY(0.98);
    pointer-events: none;
}

.p-suggestions-list.p-show {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    pointer-events: auto;
}

.p-suggestion {
    padding: 12px 16px;
    font-size: 14px;
    color: var(--p-text);
    border-bottom: 1px solid rgba(16, 16, 24, 0.04);
    display: flex;
    gap: 12px;
    align-items: center;
    cursor: pointer;
    transition: background var(--p-transition), color var(--p-transition);
}

.p-suggestion:last-child {
    border-bottom: 0
}

.p-suggestion:hover {
    background: rgba(131, 124, 124, 0.06)
}

.p-suggestion .p-suggestion-meta {
    font-size: 13px;
    color: var(--p-muted);
}

/* ===================================================================
       Tabs (centered) — category filters
       =================================================================== */
.p-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 12px auto;
    padding: 6px 12px;
    background-color: transparent !important;
    border-radius: 12px;
}

.p-tab {
    padding: 10px 22px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    color: #555;
    background: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.p-tab:hover {
    color: #222;
    border-color: #ccc;
    background: #f3f3f3;
    transform: translateY(-1px);
}

.p-tab.p-active {
    background: #333;
    color: #fff;
    border-color: #333;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transform: none;
}

/* ===================================================================
       Product grid & cards
       =================================================================== */
.p-product-grid {
    display: grid;
    gap: var(--p-gap);
    margin-top: 36px;
    margin-bottom: 56px;
    grid-template-columns: repeat(1, 1fr);
    align-items: stretch;
}

/* responsive columns */
@media(min-width:640px) {
    .p-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width:980px) {
    .p-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(min-width:1200px) {
    .p-product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Product Card */
.p-product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.p-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Product Image */
.p-product-image {
    width: 100%;
    aspect-ratio: 2 / 3;
    /* modern rectangle ratio */
    background: #f3f3f3;
    overflow: hidden;
}

.p-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* fills card */
    transition: transform 0.5s ease;
}

.p-product-card:hover .p-product-image img {
    transform: scale(1.1);
}

/* Content */
.p-product-content {
    padding: 18px;
    flex: 1;
}

.p-product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}

.p-product-meta {
    font-size: 14px;
    color: #666;
    margin: 3px 0;
}

/* Category Chip */
.p-chip {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #837c7c;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* Responsive Grid */
.p-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 40px;
}


/* hide state for animation when filtering */
.p-product-card.p-hide {
    opacity: 0;
    transform: scale(0.98);
    pointer-events: none;
}

/* Entrance animation for page load */
.p-animate-in {
    animation: p-fadeInUp 520ms cubic-bezier(.2, .9, .2, 1) both;
}

@keyframes p-fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(14px) scale(0.995)
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

/* ===================================================================
       Empty / no-results state
       =================================================================== */
.p-empty {
    padding: 40px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.4));
    border-radius: 14px;
    box-shadow: var(--p-shadow-soft);
    color: var(--p-muted);
    font-weight: 600;
}

/* ===================================================================
       Footer spacing-only
       =================================================================== */
.p-footer-space {
    height: 88px;
}

/* ===================================================================
       Small utilities (accessible focus states, visually-hidden)
       =================================================================== */
.p-visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    white-space: nowrap;
}

.p-focus-ring:focus {
    outline: 3px solid rgba(131, 124, 124, 0.18);
    outline-offset: 3px;
    border-radius: 8px;
}

/* make suggestions list scroll nicely on mobile */
.p-suggestions-list::-webkit-scrollbar {
    height: 8px;
    width: 8px
}

.p-suggestions-list::-webkit-scrollbar-thumb {
    background: rgba(16, 16, 24, 0.06);
    border-radius: 8px
}

/* small screens tweaks */
@media(max-width:520px) {
    .p-product-card {
        min-height: 300px;
        padding: 16px;
        margin-bottom: 20px;
    }

    .p-topbar {
        gap: 10px
    }

    .p-search-wrap {
        min-width: 0;
        flex-basis: 100%
    }

    .p-tab {
        padding: 8px 12px;
        font-size: 13px
    }
}

.cap-color {
    color: #0000008a !important;
    /* bright orange */
    font-size: 12px !important;
    font-weight: 500 !important;
    margin-top: 15px !important;
}

/* PRODUCTS INNER END HERE */