/* =========================================
   VARIABLES & DESIGN TOKENS
   ========================================= */
:root {
    /* Colors */
    --primary: #E63946;
    /* Vibrant Turkey Red */
    --primary-hover: #D62828;
    --secondary: #1D3557;
    /* Deep Navy Blue */
    --accent: #457B9D;
    /* Soft Blue */
    --light-blue: #A8DADC;
    --bg-main: #FAFAFA;
    /* Very light cool grey */
    --bg-light: #FFFFFF;
    --bg-alt: #F1FAEE;

    /* Text Colors */
    --text-dark: #111827;
    --text-body: #4B5563;
    --text-light: #9CA3AF;
    --text-white: #FFFFFF;

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Layout */
    --container-max: 1200px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);

    /* Animations */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.w-100 {
    width: 100%;
}

/* Grid System */
.grid {
    display: grid;
    gap: 30px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

/* =========================================
   COMPONENTS
   ========================================= */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 8px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--text-dark);
}

.text-center .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
}

.text-center .btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-white);
}

/* Navbar Auth Buttons */
.nav-auth-bar {
    width: 100%;
    background-color: var(--bg-main);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.nav-auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 40px;
}

.nav-auth-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 18px;
    /* Matching register button size */
    min-width: 160px;
    /* Forces both buttons to evaluate to the same exact size */
    border-radius: 50px;
    box-sizing: border-box;
}

.btn-login {
    background-color: #ffc107;
    color: #1d3557 !important;
    gap: 6px;
}

.btn-login:hover {
    background-color: #eab106;
    transform: translateY(-1px);
}

.btn-register {
    background-color: var(--primary);
    color: white;
}

.btn-register:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .nav-actions {
        gap: 15px;
        margin-left: 15px;
    }
}

@media (max-width: 768px) {
    .nav-auth-btn {
        font-size: 0.8rem;
        padding: 6px 14px;
        min-width: 140px;
    }

    .btn-login span {
        display: none !important;
    }

    .nav-actions {
        gap: 10px;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .nav-auth-container {
        gap: 10px;
        width: 100%;
        padding: 0 10;
    }

    .nav-auth-btn {
        flex: 1;
        font-size: 0.75rem;
        padding: 8px 10px;
        min-width: 0;
    }

    .btn-login span {
        display: none !important;
    }
}

/* Section Headers */
.section-subtitle {
    display: block;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

/* Cards */
.card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.card-body p {
    color: var(--text-body);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.price {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.2rem;
}

/* =========================================
   HEADER / NAVIGATION
   ========================================= */

/* =========================================
   SHOP REFINEMENTS
   ========================================= */
.badge-out-of-order {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    color: #64748b;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid #e2e8f0;
    margin-right: 12px;
}

.badge-out-of-order i {
    color: #ef4444;
    font-size: 0.85rem;
}

.category-card {
    max-width: 600px;
    margin: 0 auto;
}

.product-card.out-of-order {
    opacity: 0.9;
    filter: grayscale(0.2);
}

/* =========================================
   LEAD FORM MODAL
   ========================================= */
.lead-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 53, 87, 0.9);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lead-modal-overlay.active {
    display: flex !important;
    opacity: 1;
}

.lead-modal-content {
    background: white;
    width: 95%;
    max-width: 480px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.lead-modal-overlay.active .lead-modal-content {
    transform: translateY(0);
}

.lead-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.lead-modal-header i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.lead-modal-header h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.lead-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-light);
}

.btn-lead-submit {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
}

/* =========================================
   HEADER / NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--primary);
}

.logo i {
    color: var(--primary);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-btn {
    position: relative;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 120px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../tour_header_bg.png') center/cover no-repeat;
    animation: kenBurns 20s ease-out infinite alternate;
    z-index: 0;
    filter: blur(4px);
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(29, 53, 87, 0.85), rgba(29, 53, 87, 0.4));
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
}

.hero-visual {
    position: relative;
    height: 500px;
    perspective: 1000px;
    z-index: 3;
}

.visual-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.visual-1 {
    width: 320px;
    height: 420px;
    top: 40px;
    right: 30px;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.visual-2 {
    width: 250px;
    height: 320px;
    bottom: 0px;
    left: 10px;
    z-index: 1;
    animation: float 8s ease-in-out infinite 1s;
    filter: brightness(0.9);
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-subtitle {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    animation: fadeInDown 1s ease-out;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-desc {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
}

/* =========================================
   INTRODUCTION SECTION
   ========================================= */
.intro-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.intro-image-wrapper {
    position: relative;
}

.intro-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    border-radius: var(--border-radius-lg);
    z-index: 0;
}

.intro-image {
    position: relative;
    z-index: 1;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
}

/* =========================================
   PRODUCTS SECTION
   ========================================= */
.product-bg {
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.product-bg i {
    font-size: 5rem;
    color: var(--secondary);
    transition: var(--transition);
}

.product-card:hover .product-bg i {
    transform: scale(1.1);
    color: var(--primary);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 15px 0 20px;
}

.product-desc {
    min-height: 45px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--secondary);
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    color: white;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 25px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul a {
    color: var(--text-light);
}

.footer-links ul a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-list i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================================
   ANIMATIONS 
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes kenBurns {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) rotateY(-5deg) rotateX(5deg);
    }

    50% {
        transform: translateY(-20px) rotateY(0deg) rotateX(0deg);
    }

    100% {
        transform: translateY(0px) rotateY(-5deg) rotateX(5deg);
    }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 992px) {

    .intro-container,
    .footer-grid,
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-container {
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    }

    .nav-list.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section {
        padding: 60px 0;
    }
}

/* =========================================
   SHOPPING CART MODAL
   ========================================= */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
}

.cart-modal.active {
    display: block;
}

.cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
}

.cart-content {
    position: absolute;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.cart-modal.active .cart-content {
    right: 0;
}

.cart-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.cart-items {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.cart-item-info h5 {
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.cart-item-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.cart-item-price {
    font-weight: 700;
    color: var(--secondary);
    margin-right: 15px;
}

.remove-item {
    color: var(--primary);
    cursor: pointer;
    border: none;
    background: none;
    font-size: 1.2rem;
}

.cart-summary {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-light);
    margin-top: 40px;
}

/* Navbar Cart Link */
.cart-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600 !important;
    color: var(--primary) !important;
}

.cart-nav-link i {
    font-size: 1.1rem;
}

/* =========================================
   PREMIUM POPUP
   ========================================= */
.premium-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.premium-popup-content {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.premium-popup-overlay.active .premium-popup-content {
    transform: translateY(0) scale(1);
}

.premium-popup-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #E63946, #457B9D, #ffc107);
}

.popup-icon {
    font-size: 3.5rem;
    color: #E63946;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.premium-popup-content h2 {
    font-size: 2rem;
    color: #1D3557;
    margin-bottom: 12px;
    font-weight: 800;
}

.premium-popup-content p {
    color: #4B5563;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-popup-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #1D3557, #457B9D);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(69, 123, 157, 0.3);
}

.btn-popup-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(69, 123, 157, 0.4);
    color: white;
}

.btn-popup-cancel {
    background: none;
    border: none;
    color: #9CA3AF;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
    text-decoration: underline;
}

.btn-popup-cancel:hover {
    color: #E63946;
}
 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
       S H O P   R E F I N E M E N T S 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 . b a d g e - o u t - o f - o r d e r   { 
         d i s p l a y :   i n l i n e - f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   6 p x ; 
         b a c k g r o u n d :   # f 1 f 5 f 9 ; 
         c o l o r :   # 6 4 7 4 8 b ; 
         p a d d i n g :   6 p x   1 2 p x ; 
         b o r d e r - r a d i u s :   8 p x ; 
         f o n t - s i z e :   0 . 7 5 r e m ; 
         f o n t - w e i g h t :   7 0 0 ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         b o r d e r :   1 p x   s o l i d   # e 2 e 8 f 0 ; 
         m a r g i n - r i g h t :   1 2 p x ; 
 } 
 
 . b a d g e - o u t - o f - o r d e r   i   { 
         c o l o r :   # e f 4 4 4 4 ; 
         f o n t - s i z e :   0 . 8 5 r e m ; 
 } 
 
 . c a t e g o r y - c a r d   { 
         m a x - w i d t h :   6 0 0 p x ; 
         m a r g i n :   0   a u t o ; 
 } 
 
 . p r o d u c t - c a r d . o u t - o f - o r d e r   { 
         o p a c i t y :   0 . 9 ; 
         f i l t e r :   g r a y s c a l e ( 0 . 2 ) ; 
 } 
 
 . b t n - b u y - n o w   { 
         c u r s o r :   n o t - a l l o w e d   ! i m p o r t a n t ; 
         o p a c i t y :   0 . 7 ; 
         b a c k g r o u n d - c o l o r :   # 9 4 a 3 b 8   ! i m p o r t a n t ; 
         b o r d e r - c o l o r :   # 9 4 a 3 b 8   ! i m p o r t a n t ; 
 }  
 