/* =========================================================
   CRICKET STATION — ULTRA PREMIUM STYLES
========================================================= */

/* ---------- RESET / BASE ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: #0D1B17;
    color: #D1D5DB;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection { background: #C9A15A; color: #0D1B17; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0D1B17; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #C9A15A, #8F6A35);
    border-radius: 10px;
}

img { max-width: 100%; display: block; }

/* ---------- CUSTOM CURSOR ---------- */
.cursor-dot, .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .3s, height .3s, background .3s, border-color .3s;
    mix-blend-mode: difference;
}
.cursor-dot {
    width: 6px; height: 6px;
    background: #C9A15A;
}
.cursor-ring {
    width: 38px; height: 38px;
    border: 1px solid #C9A15A;
    transition: transform .15s ease-out, width .3s, height .3s;
}
.cursor-ring.hover {
    width: 60px; height: 60px;
    border-color: #E3BE74;
    background: rgba(201,161,90,.1);
}
@media (max-width: 1024px) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- SCROLL PROGRESS ---------- */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #C9A15A, #E3BE74);
    z-index: 9998;
    transition: width .1s linear;
    box-shadow: 0 0 10px rgba(201,161,90,.6);
}

/* ---------- PRELOADER ---------- */
.preloader {
    position: fixed;
    inset: 0;
    background: #0D1B17;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .8s ease, visibility .8s ease;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    animation: float 2.5s ease-in-out infinite;
}
.preloader-title {
    color: #F5F1E8;
    font-size: 2rem;
    letter-spacing: .4em;
    background: linear-gradient(90deg, #C9A15A, #E3BE74, #C9A15A);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 3s linear infinite;
}
.preloader-sub {
    color: #C9A15A;
    font-family: 'Cinzel', serif;
    letter-spacing: .5em;
    font-size: .7rem;
    margin-top: .5rem;
}
.preloader-bar {
    width: 220px;
    height: 1px;
    background: rgba(201,161,90,.2);
    margin: 2rem auto 1rem;
    overflow: hidden;
}
.preloader-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #C9A15A, #E3BE74);
    transition: width .2s;
}
.preloader-percent {
    color: #C9A15A;
    font-size: .8rem;
    letter-spacing: .3em;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ---------- NAVBAR ---------- */
.navbar {
    background: rgba(13,27,23,.4);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(201,161,90,.08);
    transform: translateY(-100%);
}
.navbar.scrolled {
    background: rgba(13,27,23,.85);
    border-bottom-color: rgba(201,161,90,.2);
    padding-block: .8rem;
}
.navbar.visible { transform: translateY(0); }

.logo-icon {
    font-size: 1.6rem;
    filter: drop-shadow(0 0 8px rgba(201,161,90,.5));
}
.nav-link {
    color: #F5F1E8;
    position: relative;
    padding: .4rem 0;
    transition: color .3s;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: #C9A15A;
    transition: width .4s ease;
}
.nav-link:hover { color: #C9A15A; }
.nav-link:hover::after { width: 100%; }

/* CTA Button */
.cta-btn {
    background: linear-gradient(135deg, #C9A15A, #8F6A35);
    color: #0D1B17;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: all .4s;
}
.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #E3BE74, #C9A15A);
    opacity: 0;
    transition: opacity .4s;
}
.cta-btn:hover::before { opacity: 1; }
.cta-btn span, .cta-btn i { position: relative; z-index: 1; }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 85%; max-width: 380px;
    height: 100vh;
    background: #0D1B17;
    border-left: 1px solid rgba(201,161,90,.2);
    transition: right .5s cubic-bezier(.77,0,.175,1);
    overflow-y: auto;
    z-index: 100;
}
.mobile-menu.open { right: 0; }

/* ---------- BUTTONS ---------- */
.btn-primary, .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    padding: 1rem 2.2rem;
    font-family: 'Cinzel', serif;
    font-size: .75rem;
    letter-spacing: .3em;
    border-radius: 2px;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, #C9A15A, #8F6A35);
    color: #0D1B17;
    border: 1px solid #C9A15A;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #E3BE74, #C9A15A);
    transition: left .5s ease;
}
.btn-primary:hover::before { left: 0; }
.btn-primary span, .btn-primary i { position: relative; z-index: 1; }
.btn-primary:hover { box-shadow: 0 10px 30px rgba(201,161,90,.3); transform: translateY(-2px); }

.btn-ghost {
    background: transparent;
    color: #F5F1E8;
    border: 1px solid rgba(201,161,90,.4);
}
.btn-ghost:hover {
    border-color: #C9A15A;
    color: #C9A15A;
    background: rgba(201,161,90,.05);
}

/* ---------- HERO ---------- */
.hero { position: relative; }
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.05);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        /* radial-gradient(ellipse at center, rgba(13,27,23,.55) 0%, rgba(13,27,23,.9) 100%), */
        linear-gradient(180deg, rgba(13,27,23,.4) 0%, rgba(13,27,23,.8) 100%);
    z-index: 2;
}
.grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: .08;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-content { z-index: 4; }
.hero-tag, .hero-title, .hero-sub, .hero-btns {
    opacity: 0;
    transform: translateY(40px);
}
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.scroll-indicator-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, #C9A15A);
    position: relative;
    overflow: hidden;
}
.scroll-indicator-line::after {
    content: '';
    position: absolute;
    top: -60px; left: 0;
    width: 100%; height: 60px;
    background: linear-gradient(180deg, transparent, #E3BE74, transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { top: -60px; }
    100% { top: 60px; }
}

/* Corner accents */
.corner-accent {
    position: absolute;
    width: 30px; height: 30px;
    border-color: rgba(201,161,90,.4);
    border-style: solid;
    z-index: 5;
}
.corner-accent.top-8.left-8 { border-width: 1px 0 0 1px; }
.corner-accent.top-8.right-8 { border-width: 1px 1px 0 0; }
.corner-accent.bottom-24.left-8 { border-width: 0 0 1px 1px; }
.corner-accent.bottom-24.right-8 { border-width: 0 1px 1px 0; }

/* ---------- SECTION HEADER ---------- */
.section-header h2 {
    line-height: 1.15;
}
.divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C9A15A, transparent);
}

/* ---------- WHY CARDS ---------- */
.why-card {
    background: #1A2B24;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(143,106,53,.2);
    border-radius: 4px;
    position: relative;
    transition: all .5s ease;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,161,90,.08), transparent);
    opacity: 0;
    transition: opacity .5s;
}
.why-card:hover {
    transform: translateY(-10px);
    border-color: #C9A15A;
    box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 0 30px rgba(201,161,90,.1);
}
.why-card:hover::before { opacity: 1; }
.why-card-icon {
    width: 60px; height: 60px;
    border: 1px solid #C9A15A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A15A;
    font-size: 1.3rem;
    transition: all .4s;
    position: relative;
    z-index: 1;
}
.why-card:hover .why-card-icon {
    background: #C9A15A;
    color: #0D1B17;
    transform: rotate(360deg);
}
.why-card h3, .why-card p { position: relative; z-index: 1; }
.why-card-line {
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, #C9A15A, #E3BE74);
    transition: width .6s ease;
}
.why-card:hover .why-card-line { width: 100%; }

/* ---------- SERVICE CARDS ---------- */
.service-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}
.service-img {
    position: relative;
    height: 480px;
    overflow: hidden;
}
.service-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(.215,.61,.355,1);
}
.service-card:hover .service-img img { transform: scale(1.1); }
.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,27,23,.2) 0%, rgba(13,27,23,.95) 100%);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background .5s;
}
.service-card:hover .service-overlay {
    background: linear-gradient(180deg, rgba(13,27,23,.4) 0%, rgba(13,27,23,.98) 100%);
}
.service-btn {
    opacity: 0;
    transform: translateY(10px);
    transition: all .5s ease .1s;
}
.service-card:hover .service-btn {
    opacity: 1;
    transform: translateY(0);
}
.service-btn:hover { color: #E3BE74 !important; letter-spacing: .4em; }

/* ---------- ABOUT ---------- */
.about-img-wrap { position: relative; }
.about-img {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/5;
}
.about-img::before {
    content: '';
    position: absolute;
    inset: 15px;
    border: 1px solid rgba(201,161,90,.4);
    z-index: 2;
    pointer-events: none;
}
.about-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}
.about-img-wrap:hover .about-img img { transform: scale(1.05); }
.about-badge {
    position: absolute;
    bottom: -30px; right: -20px;
    background: linear-gradient(135deg, #C9A15A, #8F6A35);
    color: #0D1B17;
    padding: 1.5rem 2rem;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
    display: flex;
    flex-direction: column;
    z-index: 3;
}
.signature {
    font-family: 'Cinzel', serif;
    font-style: italic;
    color: #C9A15A;
    font-size: 1.8rem;
    letter-spacing: .1em;
}

/* ---------- PRODUCT CARDS ---------- */
.product-card {
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,.15);
    border-radius: 4px;
    overflow: hidden;
    transition: all .5s ease;
}
.product-card:hover {
    border-color: #C9A15A;
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,.4), 0 0 30px rgba(201,161,90,.08);
}
.product-img {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #16261F;
}
.product-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}
.product-card:hover .product-img img { transform: scale(1.08); }
.product-label {
    position: absolute;
    top: 1rem; left: 1rem;
    background: rgba(13,27,23,.85);
    color: #C9A15A;
    padding: .35rem .9rem;
    font-size: .65rem;
    letter-spacing: .3em;
    font-family: 'Cinzel', serif;
    border: 1px solid rgba(201,161,90,.3);
    z-index: 2;
}
.product-label.gold {
    background: linear-gradient(135deg, #C9A15A, #8F6A35);
    color: #0D1B17;
    border-color: transparent;
}
.product-actions {
    position: absolute;
    top: 1rem; right: 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all .4s ease;
    z-index: 2;
}
.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}
.product-actions button {
    width: 40px; height: 40px;
    background: rgba(13,27,23,.9);
    color: #C9A15A;
    border: 1px solid rgba(201,161,90,.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s;
}
.product-actions button:hover {
    background: #C9A15A;
    color: #0D1B17;
}
.product-info { padding: 1.5rem; }

/* ---------- BAT BUILDER BANNER ---------- */
.section-builder { position: relative; }
.builder-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.builder-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(.3);
}
.builder-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13,27,23,.85) 0%, rgba(13,27,23,.95) 100%),
        radial-gradient(circle at 50% 50%, rgba(201,161,90,.1) 0%, transparent 70%);
}
.float-el {
    position: absolute;
    border: 1px solid rgba(201,161,90,.2);
    border-radius: 50%;
    z-index: 2;
}
.float-el-1 { width: 200px; height: 200px; top: 10%; left: 5%; animation: float 6s ease-in-out infinite; }
.float-el-2 { width: 120px; height: 120px; bottom: 15%; right: 8%; animation: float 8s ease-in-out infinite reverse; }

/* ---------- AMBASSADOR CARDS ---------- */
.ambassador-card {
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,.15);
    border-radius: 4px;
    overflow: hidden;
    transition: all .5s ease;
}
.ambassador-card:hover {
    border-color: #C9A15A;
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,.45);
}
.ambassador-img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}
.ambassador-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s ease, filter .5s;
    filter: grayscale(.3);
}
.ambassador-card:hover .ambassador-img img {
    transform: scale(1.08);
    filter: grayscale(0);
}
.ambassador-social {
    position: absolute;
    bottom: 1rem; left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: .8rem;
    opacity: 0;
    transition: all .5s ease;
}
.ambassador-card:hover .ambassador-social {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.ambassador-social a {
    width: 38px; height: 38px;
    background: rgba(13,27,23,.9);
    color: #C9A15A;
    border: 1px solid #C9A15A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}
.ambassador-social a:hover {
    background: #C9A15A;
    color: #0D1B17;
}

/* ---------- TEAM CARDS ---------- */
.team-card { transition: all .5s ease; }
.team-card:hover { transform: translateY(-8px); }
.team-img {
    width: 180px; height: 180px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(201,161,90,.3);
    padding: 6px;
    transition: all .5s;
}
.team-card:hover .team-img {
    border-color: #C9A15A;
    box-shadow: 0 0 40px rgba(201,161,90,.2);
}
.team-img img {
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform .8s;
}
.team-card:hover .team-img img { transform: scale(1.08); }
.team-social {
    display: flex;
    justify-content: center;
    gap: .8rem;
}
.team-social a {
    width: 32px; height: 32px;
    border: 1px solid rgba(201,161,90,.3);
    color: #C9A15A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    transition: all .3s;
}
.team-social a:hover {
    background: #C9A15A;
    color: #0D1B17;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-card {
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,.2);
    padding: 3rem 2.5rem;
    border-radius: 4px;
    text-align: center;
    position: relative;
    margin: 1rem;
}
.testimonial-quote {
    font-size: 3rem;
    color: #C9A15A;
    opacity: .3;
    margin-bottom: 1rem;
}
.testimonial-stars {
    color: #C9A15A;
    margin-bottom: 1.5rem;
    letter-spacing: .3em;
}
.testimonial-text {
    font-family: 'Cinzel', serif;
    font-style: italic;
    color: #F5F1E8;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201,161,90,.15);
}
.testimonial-author img {
    width: 55px; height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #C9A15A;
}
.swiper-pagination-bullet {
    background: rgba(201,161,90,.3) !important;
    opacity: 1 !important;
    width: 30px !important;
    height: 2px !important;
    border-radius: 0 !important;
    transition: all .3s;
}
.swiper-pagination-bullet-active {
    background: #C9A15A !important;
    width: 50px !important;
}

/* ---------- CTA ---------- */
.section-cta {
    background:
        linear-gradient(135deg, rgba(13,27,23,.95), rgba(22,38,31,.95)),
        url('https://images.unsplash.com/photo-1540747913346-19e32dc3e97e?auto=format&fit=crop&w=1920&q=80') center/cover;
    position: relative;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201,161,90,.08) 0%, transparent 60%);
}

/* ---------- INSTAGRAM ---------- */
.insta-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 4px;
    display: block;
}
.insta-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}
.insta-item:hover img { transform: scale(1.1); }
.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,27,23,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A15A;
    font-size: 2rem;
    opacity: 0;
    transition: opacity .4s;
}
.insta-item:hover .insta-overlay { opacity: 1; }

/* ---------- FOOTER ---------- */
.footer-link {
    color: #D1D5DB;
    transition: color .3s, padding-left .3s;
    display: inline-block;
}
.footer-link:hover {
    color: #C9A15A;
    padding-left: 5px;
}
.footer-social a {
    width: 38px; height: 38px;
    border: 1px solid rgba(201,161,90,.3);
    color: #C9A15A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}
.footer-social a:hover {
    background: #C9A15A;
    color: #0D1B17;
    transform: translateY(-3px);
}
.newsletter-form {
    display: flex;
    border: 1px solid rgba(201,161,90,.3);
    border-radius: 2px;
    overflow: hidden;
}
.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: .9rem 1rem;
    color: #F5F1E8;
    font-size: .8rem;
    outline: none;
}
.newsletter-form input::placeholder { color: rgba(209,213,219,.5); }
.newsletter-form button {
    background: #C9A15A;
    color: #0D1B17;
    padding: 0 1.2rem;
    border: none;
    cursor: pointer;
    transition: background .3s;
}
.newsletter-form button:hover { background: #E3BE74; }


/* =========================================================
   CATEGORY SECTION (NEW)
   Prefix: cat-
========================================================= */
.cat-section {
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.cat-header {
    position: relative;
}

/* Arrow Buttons */
.cat-arrows {
    gap: 0.75rem;
}
.cat-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(201,161,90,0.4);
    border-radius: 50%;
    background: transparent;
    color: #C9A15A;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
.cat-arrow:hover {
    background: #C9A15A;
    color: #0D1B17;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(201,161,90,0.3);
}

/* Scrollable Wrapper */
.cat-wrapper {
    position: relative;
    overflow: hidden;
    /* Fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 2%, black 98%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 2%, black 98%, transparent 100%);
}

.cat-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}
.cat-track::-webkit-scrollbar { display: none; }
.cat-track.dragging { cursor: grabbing; scroll-behavior: auto; }

/* Category Card */
.cat-card {
    flex: 0 0 calc((100% - 6rem) / 5);
    min-width: 240px;
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(143,106,53,0.2);
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.cat-card:hover {
    transform: translateY(-10px);
    border-color: #C9A15A;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 40px rgba(201,161,90,0.15);
}

.cat-img {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.cat-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    filter: grayscale(0.2) brightness(0.9);
}
.cat-card:hover .cat-img img {
    transform: scale(1.12);
    filter: grayscale(0) brightness(1);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(13,27,23,0.2) 0%, 
        rgba(13,27,23,0.5) 50%, 
        rgba(13,27,23,0.95) 100%);
    z-index: 2;
    transition: background 0.5s;
}
.cat-card:hover .cat-overlay {
    background: linear-gradient(180deg, 
        rgba(13,27,23,0.1) 0%, 
        rgba(13,27,23,0.4) 50%, 
        rgba(13,27,23,0.9) 100%);
}

.cat-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem;
    z-index: 3;
    text-align: center;
}

.cat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    border: 1px solid rgba(201,161,90,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A15A;
    font-size: 1.3rem;
    background: rgba(13,27,23,0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}
.cat-card:hover .cat-icon {
    background: #C9A15A;
    color: #0D1B17;
    border-color: #C9A15A;
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 25px rgba(201,161,90,0.4);
}

.cat-content h3 {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 1.15rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
    transition: color 0.3s;
}
.cat-card:hover .cat-content h3 {
    color: #C9A15A;
}

.cat-count {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: #C9A15A;
    opacity: 0.8;
}

/* Bottom Gold Line */
.cat-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #C9A15A, #E3BE74);
    transition: width 0.6s ease;
    z-index: 4;
}
.cat-card:hover .cat-line { width: 100%; }

/* Responsive */
@media (max-width: 1024px) {
    .cat-card {
        flex: 0 0 calc((100% - 3rem) / 3);
        min-width: 220px;
    }
}
@media (max-width: 768px) {
    .cat-section { padding: 4rem 0 2rem; }
    .cat-card {
        flex: 0 0 70%;
        min-width: 200px;
    }
    .cat-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}
@media (max-width: 480px) {
    .cat-card { flex: 0 0 80%; }
}


/* =========================================================
   FEATURED PRODUCTS — SHOW ALL BUTTON
   Prefix: fp- (Featured Products)
========================================================= */
.fp-cta-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 5rem;
}

.fp-cta-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,161,90,0.4), transparent);
}

.fp-show-all {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.1rem 2.5rem;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: #F5F1E8;
    background: transparent;
    border: 1px solid rgba(201,161,90,0.4);
    border-radius: 2px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.fp-show-all::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #C9A15A, #8F6A35);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: 0;
}

.fp-show-all:hover::before {
    transform: translateY(0);
}

.fp-show-all:hover {
    color: #0D1B17;
    border-color: #C9A15A;
    box-shadow: 0 15px 40px rgba(201,161,90,0.25), 0 0 30px rgba(201,161,90,0.1);
    transform: translateY(-3px);
}

.fp-show-all-text,
.fp-show-all-count,
.fp-show-all i {
    position: relative;
    z-index: 1;
}

.fp-show-all-text {
    text-transform: uppercase;
}

.fp-show-all-count {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: #C9A15A;
    padding: 0.25rem 0.6rem;
    border: 1px solid rgba(201,161,90,0.3);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.fp-show-all:hover .fp-show-all-count {
    color: #0D1B17;
    border-color: rgba(13,27,23,0.3);
    background: rgba(13,27,23,0.1);
}

.fp-show-all i {
    font-size: 0.75rem;
    transition: transform 0.4s ease;
}

.fp-show-all:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .fp-cta-wrap {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 3.5rem;
    }
    .fp-cta-line {
        width: 60px;
        max-width: 60px;
        height: 1px;
    }
    .fp-show-all {
        padding: 1rem 2rem;
        font-size: 0.75rem;
        width: 100%;
        max-width: 340px;
        justify-content: center;
    }
}


/* =========================================================
   COMBO DEALS SECTION
   Prefix: deal-
========================================================= */
.deal-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.deal-header {
    position: relative;
}

/* Actions Container */
.deal-actions {
    align-items: center;
}

/* View All Button */
.deal-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: #F5F1E8;
    background: transparent;
    border: 1px solid rgba(201,161,90,0.4);
    border-radius: 2px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.deal-view-all::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #C9A15A, #8F6A35);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    z-index: 0;
}
.deal-view-all:hover::before { transform: translateX(0); }
.deal-view-all:hover {
    color: #0D1B17;
    border-color: #C9A15A;
    box-shadow: 0 10px 30px rgba(201,161,90,0.25);
}
.deal-view-all span,
.deal-view-all i {
    position: relative;
    z-index: 1;
}
.deal-view-all i {
    font-size: 0.7rem;
    transition: transform 0.4s ease;
}
.deal-view-all:hover i {
    transform: translateX(4px);
}

/* Gold Divider */
.deal-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, transparent, rgba(201,161,90,0.4), transparent);
}

/* Arrow Buttons */
.deal-arrows {
    gap: 0.75rem;
}
.deal-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(201,161,90,0.4);
    border-radius: 50%;
    background: transparent;
    color: #C9A15A;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
.deal-arrow:hover {
    background: #C9A15A;
    color: #0D1B17;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(201,161,90,0.3);
}

/* Mobile CTA */
.deal-mobile-cta {
    text-align: center;
}
.deal-view-all-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: #0D1B17;
    background: linear-gradient(135deg, #C9A15A, #8F6A35);
    border: 1px solid #C9A15A;
    border-radius: 2px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    width: 100%;
    max-width: 320px;
}
.deal-view-all-mobile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #E3BE74, #C9A15A);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}
.deal-view-all-mobile:hover::before { opacity: 1; }
.deal-view-all-mobile:hover {
    box-shadow: 0 10px 30px rgba(201,161,90,0.3);
    transform: translateY(-2px);
}
.deal-view-all-mobile span,
.deal-view-all-mobile i {
    position: relative;
    z-index: 1;
}
.deal-view-all-mobile i {
    font-size: 0.7rem;
    transition: transform 0.4s ease;
}
.deal-view-all-mobile:hover i {
    transform: translateX(4px);
}

/* Scrollable Wrapper */
.deal-wrapper {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 2%, black 98%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 2%, black 98%, transparent 100%);
}

.deal-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}
.deal-track::-webkit-scrollbar { display: none; }
.deal-track.dragging { cursor: grabbing; scroll-behavior: auto; }

/* Deal Card */
.deal-card {
    flex: 0 0 calc((100% - 6rem) / 5);
    min-width: 280px;
    position: relative;
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.2);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.deal-card:hover {
    transform: translateY(-10px);
    border-color: #C9A15A;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 40px rgba(201,161,90,0.15);
}

/* Badge */
.deal-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 0.9rem;
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: #C9A15A;
    background: rgba(13,27,23,0.9);
    border: 1px solid rgba(201,161,90,0.3);
    border-radius: 2px;
    z-index: 3;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.deal-badge.gold {
    background: linear-gradient(135deg, #C9A15A, #8F6A35);
    color: #0D1B17;
    border-color: transparent;
}

/* Image */
.deal-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.deal-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    filter: grayscale(0.2) brightness(0.9);
}
.deal-card:hover .deal-img img {
    transform: scale(1.1);
    filter: grayscale(0) brightness(1);
}

/* Content */
.deal-content {
    padding: 1.5rem;
}
.deal-content h3 {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}
.deal-card:hover .deal-content h3 {
    color: #C9A15A;
}
.deal-items {
    font-size: 0.8rem;
    color: #D1D5DB;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

/* Pricing */
.deal-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.deal-old {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #D1D5DB;
    text-decoration: line-through;
    opacity: 0.6;
}
.deal-price {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: #C9A15A;
    font-weight: 600;
}

/* Button */
.deal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: #F5F1E8;
    background: transparent;
    border: 1px solid rgba(201,161,90,0.4);
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.4s ease;
    width: 100%;
    justify-content: center;
}
.deal-btn:hover {
    background: #C9A15A;
    color: #0D1B17;
    border-color: #C9A15A;
}
.deal-btn i {
    font-size: 0.65rem;
    transition: transform 0.4s ease;
}
.deal-btn:hover i {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .deal-card {
        flex: 0 0 calc((100% - 3rem) / 3);
        min-width: 260px;
    }
}
@media (max-width: 768px) {
    .deal-section { padding: 4rem 0; }
    .deal-card {
        flex: 0 0 75%;
        min-width: 240px;
    }
    .deal-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}
@media (max-width: 480px) {
    .deal-card { flex: 0 0 85%; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem !important; }
    .about-badge { right: 10px; bottom: -20px; padding: 1rem 1.2rem; }
    .service-img { height: 380px; }
    .testimonial-card { padding: 2rem 1.5rem; }
    .testimonial-text { font-size: .95rem; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2rem !important; }
    .btn-primary, .btn-ghost { padding: .9rem 1.5rem; font-size: .7rem; }
    .team-img { width: 140px; height: 140px; }
}


