/* Swiftly Goods Premium Design System - Reference Match */
:root {
    --primary-color: #a855f7; /* Vibrant Purple */
    --primary-dark: #9333ea;
    --secondary-color: #ec4899; /* Pinkish accent */
    --text-black: #000000;
    --text-grey: #666666;
    --bg-light: #ffffff;
    --bg-soft: #f8f8f8;
    --white: #ffffff;
    --shadow-premium: 0 20px 40px rgba(0,0,0,0.08);
    --shadow-soft: 0 4px 12px rgba(0,0,0,0.03);
    --radius-xl: 12px;
    --radius-lg: 10px;
    --radius-md: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-black);
    background-color: var(--bg-light);
    line-height: 1.5;
}

/* Announcement Bar */
.announcement-bar {
    background: #a855f7;
    color: white;
    text-align: center;
    padding: 6px 0;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Header */
.navbar {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.navbar-brand {
    font-weight: 900;
    font-size: 1.5rem;
    color: #a855f7 !important;
}

/* Hero Section */
.hero-section {
    padding: 40px 0;
}

.product-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}

.price-box {
    font-size: 1.8rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 10px;
}

/* Bulk Discount Box */
.bulk-discount-box {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.bulk-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.bulk-title::before, .bulk-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
}

.bundle-item {
    background: #f1f5f9;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bundle-item:hover {
    border-color: #a855f7;
}

.bundle-item.active {
    background: #eff6ff;
    border-color: #a855f7;
}

/* Buy Button */
.btn-buy-now {
    background: #1a1a1a;
    color: white;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    border: none;
    margin-bottom: 20px;
    transition: var(--transition);
}

.btn-buy-now:hover {
    background: #333;
    color: white;
}

/* Time is Ticking Box */
.ticking-box {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border-radius: 15px;
    padding: 30px;
    color: white;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.ticking-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.ticking-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.countdown-box {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.countdown-item {
    font-size: 1.5rem;
    font-weight: 800;
}

.save-btn {
    background: #facc15;
    color: #000;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    text-decoration: none;
    text-transform: uppercase;
}

/* Gallery Thumbnails */
.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumb-item {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    flex-shrink: 0;
}

.thumb-item.active {
    border-color: #a855f7;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Checkout Form Refined */
.checkout-section {
    background: #f8fafc;
    padding: 60px 0;
}

.checkout-form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #444;
}

.form-control {
    border: 1px solid #e2e8f0;
    padding: 12px;
    font-size: 0.95rem;
}

/* Fix for Mobile Image Visibility */
@media (max-width: 768px) {
    .heroSwiper {
        width: 100%;
        height: auto;
        min-height: 300px;
    }
    .heroSwiper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Order Modal Styles */
.modal-content {
    background: #ffffff;
}

.bundle-option {
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid #eee !important;
}

.bundle-option:hover {
    border-color: var(--primary-color) !important;
    background-color: rgba(168, 85, 247, 0.05) !important;
}

.bundle-option.active {
    border-color: var(--primary-color) !important;
    background-color: rgba(168, 85, 247, 0.1) !important;
}

.bg-soft {
    background-color: #f8fafc;
}

.btn-primary {
    background-color: #1a1a1a;
    border: none;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #333;
}
/* WhatsApp Order Button */
.btn-whatsapp-order {
    background-color: #25d366;
    color: white;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-whatsapp-order:hover {
    background-color: #128c7e;
    color: white;
}
