/* ============================================
   VAPE SHOP - MAIN STYLES
   ============================================ */

/* ----- Variables ----- */
:root {
    --primary: #6C3B8C;
    --primary-dark: #4A1B6A;
    --primary-light: #8B5BA8;
    --secondary: #FF6B6B;
    --success: #2ED573;
    --warning: #F7B731;
    --danger: #FC5C65;
    --dark: #2C2C3A;
    --light: #F8F9FA;
    --gray: #6C6C80;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ----- Reset & Base ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--dark);
    background-color: #F5F6FA;
    line-height: 1.6;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ----- Skip Link ----- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    z-index: 9999;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* ----- Buttons ----- */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ----- Header ----- */
.top-bar {
    font-size: 0.85rem;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar .nav-link.active {
    color: var(--primary) !important;
}

/* ----- Hero Section ----- */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 4rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section .hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-section .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-section .hero-image {
    position: relative;
    z-index: 1;
}

.hero-section .hero-image img {
    max-height: 400px;
    object-fit: contain;
}

.hero-section .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-section .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.hero-section .shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.hero-section .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

/* ----- Category Cards ----- */
.category-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.category-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.category-card .card-body {
    padding: 1.5rem;
}

.category-card .card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-card .card-text {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ----- Product Cards ----- */
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-card .card-img-top {
    height: 250px;
    object-fit: cover;
    background: #f5f5f5;
    padding: 1rem;
}

.product-card .badge-puff {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-card .card-body {
    padding: 1.25rem;
}

.product-card .card-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .product-brand {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card .product-price {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}

.product-card .product-rating {
    font-size: 0.85rem;
    color: var(--gray);
}

.product-card .btn-add-cart {
    width: 100%;
    border-radius: 8px;
    font-weight: 600;
    padding: 0.5rem;
}

.product-card .stock-badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
}

/* ----- Product Detail ----- */
.product-detail .product-gallery {
    position: sticky;
    top: 2rem;
}

.product-detail .product-gallery .main-image {
    border-radius: 16px;
    overflow: hidden;
    background: #f5f5f5;
    padding: 2rem;
}

.product-detail .product-gallery .main-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
}

.product-detail .product-gallery .thumbnails {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.product-detail .product-gallery .thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.product-detail .product-gallery .thumbnails img:hover,
.product-detail .product-gallery .thumbnails img.active {
    border-color: var(--primary);
}

.product-detail .product-info .product-title {
    font-size: 2rem;
    font-weight: 700;
}

.product-detail .product-info .product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.product-detail .product-info .product-meta {
    color: var(--gray);
    font-size: 0.95rem;
}

.product-detail .flavor-selector .flavor-chip {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.product-detail .flavor-selector .flavor-chip:hover {
    border-color: var(--primary);
}

.product-detail .flavor-selector .flavor-chip.active {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

/* ============================================================
   PRODUCT CARD PRICING STYLES
   ============================================================ */

.product-pricing {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dc3545;
    line-height: 1.2;
}

/* Box Price Styles */
.product-box-price {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 1rem;
    color: #000000;
    background: #deecfa;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #e9ecef;   
}

.product-box-price .box-label {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.65rem;
    color: #495057;
}

.product-box-price .box-price-value {
    font-weight: 600;
    color: #198754;
}

/* Alternative: Single line with slash separator */
.product-pricing-alt .product-box-price {
    display: inline;
    background: none;
    border: none;
    padding: 0;
    margin-left: 6px;
}

.product-pricing-alt .product-box-price::before {
    content: '/ ';
    color: #adb5bd;
}
.box-label {
    font-size: 0.75rem !important;
    font-weight: bold !important;   
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */

@media (max-width: 576px) {
    .product-price {
        font-size: 1.1rem;
    }
    
    .product-box-price {
        font-size: 0.7rem;
        padding: 1px 6px;
    }
    
    .product-box-price .box-label {
        font-size: 0.6rem;
    }
}

/* ============================================================
   DARK MODE SUPPORT
   ============================================================ */

@media (prefers-color-scheme: dark) {
    .product-box-price {
        background: #2d2d2d;
        border-color: #404040;
        color: #adb5bd;
    }
    
    .product-box-price .box-label {
        color: #ced4da;
    }
    
    .product-box-price .box-price-value {
        color: #63b3ed;
    }
}

/* ============================================================
   ANIMATION FOR BOX PRICE (Optional)
   ============================================================ */

.product-box-price {
    transition: all 0.2s ease;
}

.product-box-price:hover {
    background: #e9ecef;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* ============================================================
   PRODUCT DETAIL - PRICE SECTION
   ============================================================ */

.product-price-section {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.unit-price-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.product-price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #dc3545;
    margin: 0;
}

.box-price-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 8px;
    border-top: 1px dashed #dee2e6;
    margin-top: 8px;
}

.box-price-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

.box-price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #198754;
}

.box-price-saving {
    font-size: 0.8rem;
    color: #28a745;
    background: #d4edda;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.price-per-unit {
    font-size: 0.8rem;
    color: #6c757d;
}

/* ============================================================
   MINIMUM ORDER QUANTITY NOTICE
   ============================================================ */

.min-order-notice .alert {
    border-left: 4px solid #ffc107;
    padding: 12px 16px;
    margin-bottom: 0;
}

.min-order-notice .alert i {
    color: #ffc107;
}

.min-order-notice .alert strong {
    color: #856404;
}

/* ============================================================
   QUANTITY INPUT STYLING
   ============================================================ */

.qty-btn {
    min-width: 38px;
}

.qty-btn:hover {
    background-color: #e9ecef;
}

#qtyInput {
    max-width: 80px;
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */

@media (max-width: 768px) {
    .product-price-display {
        font-size: 1.5rem;
    }
    
    .box-price-value {
        font-size: 1.1rem;
    }
    
    .box-price-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .min-order-notice .alert {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .product-price-section {
        padding: 12px 15px;
    }
    
    .product-price-display {
        font-size: 1.25rem;
    }
    
    .box-price-value {
        font-size: 1rem;
    }
}

/* ============================================================
   ADD TO CART BUTTON ENHANCEMENT
   ============================================================ */

.btn-add-cart {
    position: relative;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 59, 140, 0.3);
}

.btn-add-cart:active {
    transform: translateY(0);
}

/* ============================================================
   DARK MODE SUPPORT
   ============================================================ */

@media (prefers-color-scheme: dark) {
    .product-price-section {
        background: #2d2d2d;
        border-color: #404040;
    }
    
    .unit-price-label,
    .box-price-label {
        color: #adb5bd;
    }
    
    .product-price-display {
        color: #f8a4b8;
    }
    
    .box-price-value {
        color: #63b3ed;
    }
    
    .box-price-saving {
        background: #1e3a2a;
        color: #68d391;
    }
    
    .price-per-unit {
        color: #adb5bd;
    }
    
    .min-order-notice .alert {
        background: #2d2d1a;
        border-color: #665a1a;
        color: #e8d5a0;
    }
    
    .min-order-notice .alert strong {
        color: #f0d080;
    }
    
    .min-order-notice .alert .text-muted {
        color: #adb5bd !important;
    }
}

/* ============================================================
   ALTERNATIVE LAYOUT - Box Price on Same Line
   ============================================================ */

/* Use this if you prefer a more compact layout */
.product-pricing-compact .product-price {
    display: inline;
    margin-right: 8px;
}

.product-pricing-compact .product-box-price {
    display: inline-flex;
    background: none;
    border: none;
    padding: 0;
}

.product-pricing-compact .product-box-price::before {
    content: '|';
    margin-right: 8px;
    color: #dee2e6;
    font-weight: 300;
}

/* ----- Cart ----- */
.cart-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cart-item .item-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: #f5f5f5;
    border-radius: 8px;
}

.cart-item .item-name {
    font-weight: 600;
}

.cart-item .item-flavor {
    color: var(--gray);
    font-size: 0.9rem;
}

.cart-item .item-price {
    font-weight: 600;
    color: var(--primary);
}

.cart-item .qty-input {
    width: 80px;
    text-align: center;
}

/* ----- Checkout ----- */
.checkout-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.checkout-section .order-summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
}

.checkout-section .order-summary .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.checkout-section .order-summary .summary-row:last-child {
    border-bottom: none;
}

.checkout-section .order-summary .summary-total {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}

/* ----- Trust Badges ----- */
.trust-badges {
    background: white;
    padding: 3rem 0;
}

.trust-badges .badge-item {
    text-align: center;
    padding: 1rem;
}

.trust-badges .badge-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.trust-badges .badge-item h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.trust-badges .badge-item p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* ----- Alerts ----- */
.alert-container {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 100%;
    max-width: 500px;
}

/* ----- Loading States ----- */
.skeleton-loader {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
    .hero-section .hero-title {
        font-size: 2rem;
    }
    
    .hero-section .hero-subtitle {
        font-size: 1rem;
    }
    
    .product-detail .product-gallery .main-image img {
        height: 250px;
    }
    
    .product-detail .product-info .product-title {
        font-size: 1.5rem;
    }
    
    .product-detail .product-info .product-price {
        font-size: 1.5rem;
    }
    
    .cart-item .item-image {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-section .hero-image img {
        max-height: 200px;
    }
    
    .product-card .card-img-top {
        height: 180px;
    }
}

/* ----- Utility ----- */
.text-primary-custom {
    color: var(--primary);
}

.bg-primary-custom {
    background: var(--primary);
}

.border-primary-custom {
    border-color: var(--primary);
}

/* ----- Accessibility ----- */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .top-bar,
    .navbar,
    .footer,
    .trust-badges,
    .btn,
    .no-print {
        display: none !important;
    }
}

/*======================================== 3 tier header mega menu styles *======================================/
/* ============================================
   HEADER STYLES - Premium Vape Shop
   ============================================ */

/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

/* When scrolled - add shadow and shrink */
.sticky-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.sticky-header.scrolled .top-bar {
    padding: 0.2rem 0;
    font-size: 0.75rem;
    opacity: 0.9;
}

.sticky-header.scrolled .main-header {
    padding: 0.3rem 0;
}

.sticky-header.scrolled .navbar-brand img {
    height: 35px;
    transition: height 0.3s ease;
}

.sticky-header.scrolled .nav-main .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Smooth transition for all elements */
.sticky-header .top-bar,
.sticky-header .main-header,
.sticky-header .nav-main .navbar-nav .nav-link,
.sticky-header .navbar-brand img {
    transition: all 0.3s ease;
}

/* Responsive adjustments for sticky */
@media (max-width: 991.98px) {
    .sticky-header.scrolled .nav-main .navbar-nav .nav-link {
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 575.98px) {
    .sticky-header.scrolled .top-bar .contact-info span:not(:first-child) {
        display: none;
    }
    .sticky-header.scrolled .top-bar .quick-links a:not(:first-child):not(:last-child) {
        display: none;
    }
}

/* --------------------------------------------
   TIER 1: TOP BAR
   -------------------------------------------- */
.top-bar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-bottom: 2px solid rgba(108, 59, 140, 0.3);
    padding: 0.4rem 0;
    font-size: 0.8rem;
    position: relative;
    z-index: 1030;
}

.top-bar .contact-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1.5rem;
}

.top-bar .contact-info span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.top-bar .contact-info span:hover {
    color: #ffffff;
}

.top-bar .contact-info i {
    color: #6C3B8C;
    font-size: 0.75rem;
    width: 16px;
    text-align: center;
}

.top-bar .quick-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem 1rem;
}

.top-bar .quick-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.top-bar .quick-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: #6C3B8C;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.top-bar .quick-links a:hover {
    color: #ffffff;
    background: rgba(108, 59, 140, 0.2);
}

.top-bar .quick-links a:hover::after {
    width: 60%;
}

.top-bar .quick-links i {
    margin-right: 0.3rem;
    font-size: 0.7rem;
    color: #6C3B8C;
}

.top-bar .separator {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.6rem;
}

/* --------------------------------------------
   TIER 2: MAIN HEADER
   -------------------------------------------- */
.main-header {
    background: #ffffff;
    padding: 0.6rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1020;
}

.main-header .navbar-brand {
    padding: 0;
    display: inline-block;
    transition: transform 0.3s ease;
}

.main-header .navbar-brand:hover {
    transform: scale(1.02);
}

.main-header .navbar-brand img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* Search Form */
.search-form {
    position: relative;
}

.search-form .input-group {
    background: #f8f9fa;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.search-form .input-group:focus-within {
    border-color: #6C3B8C;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(108, 59, 140, 0.15);
}

.search-form .form-control {
    border: none;
    background: transparent;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    color: #2d3436;
    height: 46px;
}

.search-form .form-control::placeholder {
    color: #adb5bd;
    font-weight: 300;
    font-size: 0.85rem;
}

.search-form .form-control:focus {
    box-shadow: none;
    background: transparent;
}

.search-form .form-control.is-invalid {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
}

.search-form .btn-search {
    background: transparent;
    border: none;
    color: #6C3B8C;
    padding: 0 1.2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    height: 46px;
}

.search-form .btn-search:hover {
    color: #4A1B6A;
    transform: scale(1.1);
}

.search-form .invalid-feedback {
    position: absolute;
    bottom: -1.8rem;
    left: 1rem;
    font-size: 0.75rem;
    color: #dc3545;
}

/* Header Action Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-actions .btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e9ecef;
    background: transparent;
    color: #495057;
    transition: all 0.3s ease;
    position: relative;
}

.header-actions .btn-icon:hover {
    border-color: #6C3B8C;
    color: #6C3B8C;
    background: rgba(108, 59, 140, 0.05);
    transform: translateY(-2px);
}

.header-actions .btn-icon .badge-icon {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    font-size: 0.55rem;
    font-weight: 600;
    padding: 0.15rem 0.4rem;
    border-radius: 50px;
    min-width: 18px;
    text-align: center;
    border: 2px solid white;
}

.header-actions .btn-cart {
    background: linear-gradient(135deg, #6C3B8C, #4A1B6A);
    border: none;
    color: white;
    padding: 0 1.2rem;
    border-radius: 50px;
    height: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.header-actions .btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(108, 59, 140, 0.35);
}

.header-actions .btn-cart i {
    font-size: 1rem;
}

.header-actions .btn-cart .badge-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #f8f9fa;
    color: #6C3B8C;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 50px;
    min-width: 20px;
    text-align: center;
    border: 2px solid #6C3B8C;
}

/* Mobile Search Toggle */
.btn-mobile-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    background: transparent;
    color: #495057;
    transition: all 0.3s ease;
}

.btn-mobile-search:hover {
    border-color: #6C3B8C;
    color: #6C3B8C;
    background: rgba(108, 59, 140, 0.05);
}

/* Mobile Search */
#mobileSearch {
    background: #f8f9fa;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    margin-top: 0.8rem;
    animation: slideDown 0.3s ease;
}

#mobileSearch .input-group {
    background: white;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid #e9ecef;
}

#mobileSearch .input-group:focus-within {
    border-color: #6C3B8C;
}

#mobileSearch .form-control {
    border: none;
    background: transparent;
    padding: 0.5rem 1rem;
    height: 42px;
}

#mobileSearch .btn-primary {
    border-radius: 0 50px 50px 0;
    padding: 0 1.2rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----------------------------------------------------------------------------------------------
   TIER 3: NAVIGATION - MEGA MENU
   --------------------------------------------------------------------------------------------- */
.nav-main {
    background: linear-gradient(135deg, #1a1a2e, #2d1b3d);
    border-top: 3px solid #6C3B8C;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1010;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-main .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-main .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #6C3B8C;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 3px 3px 0 0;
}

.nav-main .navbar-nav .nav-link:hover::before,
.nav-main .navbar-nav .nav-link.active::before {
    width: 60%;
}

.nav-main .navbar-nav .nav-link:hover {
    color: #ffffff;
    background: rgba(108, 59, 140, 0.15);
}

.nav-main .navbar-nav .nav-link.active {
    color: #ffffff;
    background: rgba(108, 59, 140, 0.2);
}

.nav-main .navbar-nav .nav-link i {
    margin-right: 0.4rem;
    font-size: 0.85rem;
}

.nav-main .navbar-nav .nav-link .badge-hot {
    background: #dc3545;
    color: white;
    font-size: 0.6rem;
    padding: 0.1rem 0.4rem;
    border-radius: 50px;
    margin-left: 0.3rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Dropdown Arrows */
.nav-main .navbar-nav .dropdown-toggle::after {
    margin-left: 0.4rem;
    border-top-color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.nav-main .navbar-nav .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

 /* ============================================
       MEGA DROPDOWN STYLES
       ============================================ */
    
    /* Mega Dropdown Container */
    .mega-dropdown {
        position: static;
    }
    
    .mega-dropdown .dropdown-menu.mega-menu {
        width: 100%;
        min-width: 700px;
        max-width: 900px;
        left: 50% !important;
        transform: translateX(-50%) translateY(10px);
        padding: 0;
        border: none;
        border-radius: 12px;
        background: #ffffff;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        margin-top: 0.5rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        display: block !important;
    }
    
    .mega-dropdown.show .dropdown-menu.mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }
    
    /* Mega Menu Content */
    .mega-content {
        padding: 2rem;
    }
    
    /* Mega Header */
    .mega-header {
        font-weight: 700;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #2d3436;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid rgba(108, 59, 140, 0.15);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .mega-header .badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
        font-weight: 600;
        text-transform: none;
    }
    
    .mega-header i {
        color: #6C3B8C;
        font-size: 1rem;
    }
    
    /* Mega Items */
    .mega-items {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .mega-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.6rem 0.8rem;
        color: #495057;
        text-decoration: none;
        font-size: 0.9rem;
        border-radius: 8px;
        transition: all 0.25s ease;
        position: relative;
    }
    
    .mega-item:hover {
        background: rgba(108, 59, 140, 0.06);
        color: #6C3B8C;
        padding-left: 1.2rem;
        text-decoration: none;
    }
    
    .mega-item i {
        width: 20px;
        color: #6C3B8C;
        font-size: 0.8rem;
        flex-shrink: 0;
        transition: transform 0.25s ease;
    }
    
    .mega-item:hover i {
        transform: translateX(3px);
    }
    
    .mega-item span {
        flex: 1;
    }
    
    .mega-item small {
        font-size: 0.7rem;
        color: #adb5bd;
        margin-left: auto;
    }
    
    .mega-item .badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
    }
    
    /* Mega Footer */
    .mega-footer {
        background: #f8f9fa;
        margin: 0 -2rem -2rem;
        padding: 1rem 2rem;
        border-radius: 0 0 12px 12px;
    }
    
    .mega-footer .btn-primary {
        border-radius: 50px;
        padding: 0.4rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .mega-footer .btn-primary:hover {
        transform: translateX(3px);
        box-shadow: 0 4px 15px rgba(108, 59, 140, 0.3);
    }
    
    /* Dropdown Toggle Arrow Animation */
    .mega-dropdown .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }
    
    .mega-dropdown.show .dropdown-toggle::after {
        transform: rotate(180deg);
    }
    
    /* Desktop Hover Effect */
    @media (min-width: 992px) {
        .mega-dropdown:hover .dropdown-menu.mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
            pointer-events: auto;
        }
        
        .mega-dropdown:hover .dropdown-toggle::after {
            transform: rotate(180deg);
        }
        
        .mega-dropdown .dropdown-menu.mega-menu {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
    }
    
    /* Mobile Adjustments */
    @media (max-width: 991.98px) {
        .mega-dropdown .dropdown-menu.mega-menu {
            min-width: unset;
            max-width: 100%;
            transform: none !important;
            left: 0 !important;
            right: 0;
            box-shadow: none;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 0;
            margin-top: 0;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            display: none !important;
            padding: 0.5rem 1rem;
        }
        
        .mega-dropdown.show .dropdown-menu.mega-menu {
            display: block !important;
        }
        
        .mega-content {
            padding: 1rem;
        }
        
        .mega-header {
            color: #a78bc9 !important;
            font-size: 0.8rem;
            border-bottom-color: rgba(255, 255, 255, 0.1);
        }
        
        .mega-item {
            color: rgba(255, 255, 255, 0.8) !important;
            font-size: 0.85rem;
            padding: 0.4rem 0.5rem;
        }
        
        .mega-item:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #ffffff !important;
            padding-left: 0.8rem;
        }
        
        .mega-item i {
            color: #a78bc9;
        }
        
        .mega-footer {
            background: rgba(255, 255, 255, 0.05);
            margin: 0 -1rem -1rem;
            padding: 0.8rem 1rem;
            border-radius: 0;
        }
        
        .mega-footer .text-muted {
            color: rgba(255, 255, 255, 0.5) !important;
        }
        
        .mega-footer .btn-primary {
            background: #6C3B8C;
            border-color: #6C3B8C;
        }
    }
    
    @media (max-width: 575.98px) {
        .mega-content .row {
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .mega-content .col-md-4,
        .mega-content .col-md-6 {
            width: 100%;
        }
    }
    
    /* ============================================
       EXISTING HEADER STYLES (Keep these)
       ============================================ */
    
    /* Your existing header styles here... */
    
    /* Fix for dropdown positioning */
    .mega-dropdown .dropdown-menu {
        position: absolute;
        top: 100%;
        z-index: 1050;
    }
    
    /* Ensure dropdown doesn't overflow on small screens */
    @media (max-width: 767.98px) {
        .mega-dropdown .dropdown-menu.mega-menu {
            min-width: unset;
            max-width: 100vw;
        }
    }
/* --------------------------------------------
   UTILITY CLASSES
   -------------------------------------------- */
.text-gradient {
    background: linear-gradient(135deg, #6C3B8C, #4A1B6A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-gradient {
    border-image: linear-gradient(135deg, #6C3B8C, #4A1B6A) 1;
}

.shadow-hover {
    transition: box-shadow 0.3s ease;
}

.shadow-hover:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/*----------------------------------------------------------------------
PRODUCTS PAGE
----------------------------------------------------------------------*/
/* Filter Sidebar */
.filter-sidebar {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

/* Pagination */
.pagination .page-link {
    color: #6C3B8C;
}

.pagination .page-item.active .page-link {
    background: #6C3B8C;
    border-color: #6C3B8C;
    color: white;
}

.pagination .page-link:hover {
    color: #4A1B6A;
}

/* =============================================================================================================
   FOOTER STYLES
   =================================================================================================================== */
   
.footer {
    background: #1a1a2e;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4rem;
}

/* Main Footer */
.footer-main {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #6C3B8C, #4A1B6A);
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #6C3B8C;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(108, 59, 140, 0.3);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '› ';
    color: #6C3B8C;
    font-weight: bold;
}

/* Footer Contact */
.footer-contact p {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact i {
    color: #6C3B8C;
    width: 20px;
}

/* ============================================
   DISCLAIMERS
   ============================================ */
   
.footer-disclaimers {
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.age-warning-banner {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    color: #ff6b6b;
    text-align: center;
    font-size: 0.95rem;
}

.age-warning-banner i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.age-warning-banner strong {
    color: #ff6b6b;
}

.age-warning-banner span {
    color: rgba(255, 255, 255, 0.3);
}

.disclaimer-content {
    padding: 0.5rem 0;
}

.disclaimer-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    height: 100%;
    border-left: 3px solid #6C3B8C;
}

.disclaimer-section h6 {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.disclaimer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.disclaimer-section ul li {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.disclaimer-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6C3B8C;
    font-weight: bold;
}

.disclaimer-section ul li strong {
    color: rgba(255, 255, 255, 0.8);
}

.disclaimer-section ul li a {
    color: #6C3B8C;
    text-decoration: none;
}

.disclaimer-section ul li a:hover {
    text-decoration: underline;
}

.disclaimer-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.disclaimer-footer a {
    color: #6C3B8C;
    text-decoration: none;
}

.disclaimer-footer a:hover {
    text-decoration: underline;
}

/* ============================================
   FOOTER BOTTOM
   ============================================ */
   
.footer-bottom {
    padding: 1.2rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom small {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   RESPONSIVE
   ============================================ */
   
@media (max-width: 991.98px) {
    .footer-main {
        padding: 3rem 0 2rem;
    }
}

@media (max-width: 767.98px) {
    .footer-main {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-heading::after {
        width: 30px;
    }
    
    .footer-text {
        font-size: 0.85rem;
    }
    
    .age-warning-banner {
        font-size: 0.8rem;
        padding: 0.8rem 1rem;
    }
    
    .disclaimer-section {
        padding: 1rem;
    }
    
    .disclaimer-section ul li {
        font-size: 0.75rem;
        padding-left: 1.2rem;
    }
    
    .disclaimer-footer {
        font-size: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .footer-main {
        padding: 1.5rem 0 1rem;
    }
    
    .age-warning-banner {
        font-size: 0.7rem;
        padding: 0.6rem 0.8rem;
    }
    
    .age-warning-banner .mx-2 {
        margin: 0 0.3rem !important;
    }
}
/*--------------------------------------------------------------------------------------------------
NEWS LETTER
---------------------------------------------------------------------------------------------------*/
.footer-newsletter .input-group {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-newsletter .input-group:focus-within {
    border-color: #6C3B8C;
    background: rgba(255, 255, 255, 0.08);
}

.footer-newsletter .form-control {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0.6rem 1rem;
    height: 44px;
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter .form-control:focus {
    box-shadow: none;
    background: transparent;
}

.footer-newsletter .btn-primary {
    background: #6C3B8C;
    border: none;
    border-radius: 0;
    padding: 0 1.2rem;
    height: 44px;
    transition: all 0.3s ease;
}

.footer-newsletter .btn-primary:hover {
    background: #4A1B6A;
}

.footer-newsletter small {
    font-size: 0.7rem;
    opacity: 0.5;
}

/* Alert styles for footer */
.footer-newsletter .alert {
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
}

.footer-newsletter .alert-success {
    background: rgba(40, 167, 69, 0.15);
    border-color: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.footer-newsletter .alert-danger {
    background: rgba(220, 53, 69, 0.15);
    border-color: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.footer-newsletter .alert .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.5;
    font-size: 0.6rem;
}
/*---------------------------------------------------------------------------------------------------------------
AGE MODAL STYLES
----------------------------------------------------------------------------------------------------------------*/
/* Age Verification Modal */
.age-modal {
    border: none;
    border-radius: 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.age-modal .modal-body {
    padding: 3rem 2rem;
}

.age-modal .age-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
    font-size: 2.5rem;
    margin: 0 auto;
}

.age-modal h4 {
    color: #ffffff;
    font-weight: 700;
}

.age-modal .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.age-modal .text-muted a {
    color: #6C3B8C;
}

.age-modal .nicotine-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.age-modal .nicotine-warning a {
    color: #6C3B8C;
}

.age-modal .btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.age-modal .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.age-modal .btn-danger {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.age-modal .btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.age-modal small {
    color: rgba(255, 255, 255, 0.4) !important;
}

.age-modal small a {
    color: #6C3B8C !important;
}

/* Modal Backdrop */
.modal-backdrop {
    background: rgba(0, 0, 0, 0.85);
}

/* Responsive */
@media (max-width: 575.98px) {
    .age-modal .modal-body {
        padding: 2rem 1.5rem;
    }
    
    .age-modal .age-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .age-modal h4 {
        font-size: 1.3rem;
    }
    
    .age-modal .btn-lg {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
}

/* ============================================
   HOMEPAGE HERO
   ============================================ */

.home-hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

/* Hero Text */
.home-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.home-hero .hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Hero Buttons */
.home-hero .btn {
    border-radius: 50px;
    padding: 0.7rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.home-hero .btn-light {
    background: #ffffff;
    color: #1a1a2e;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.home-hero .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 255, 255, 0.3);
}

.home-hero .btn-outline-light {
    border-width: 2px;
}

.home-hero .btn-outline-light:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 35px rgba(255, 255, 255, 0.2);
}

.home-hero .btn-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    border: none;
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.3);
}

.home-hero .btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(220, 53, 69, 0.4);
}

.home-hero .btn-outline-danger {
    border-width: 2px;
}

.home-hero .btn-outline-danger:hover {
    transform: translateY(-3px);
    background: rgba(220, 53, 69, 0.15);
    box-shadow: 0 8px 35px rgba(220, 53, 69, 0.2);
}

/* Hero Image */
.home-hero .hero-image img {
    animation: floatImage 3s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Floating Shapes Animation */
.home-hero .floating-shapes .shape {
    animation: floatShapes 8s ease-in-out infinite;
}

.home-hero .floating-shapes .shape-1 {
    animation-delay: 0s;
}

.home-hero .floating-shapes .shape-2 {
    animation-delay: 2s;
}

@keyframes floatShapes {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -20px) scale(1.1);
    }
    50% {
        transform: translate(-10px, 10px) scale(0.9);
    }
    75% {
        transform: translate(15px, 15px) scale(1.05);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .home-hero {
        min-height: 400px;
    }
    
    .home-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .home-hero .row {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .home-hero {
        min-height: 350px;
    }
    
    .home-hero .hero-title {
        font-size: 2rem;
    }
    
    .home-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .home-hero .btn {
        font-size: 0.8rem;
        padding: 0.6rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .home-hero {
        min-height: 300px;
        text-align: center;
    }
    
    .home-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .home-hero .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .home-hero .d-flex {
        justify-content: center;
    }
}