:root {
    --gold: #D4AF37;
    --gold-light: #F4DF87;
    --black: #0A0A0A;
    --bg-dark: #121212;
    --text-light: #F5F5F5;
    --text-muted: #A0A0A0;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--black);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(10, 10, 10, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

.cart-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.cart-btn:hover {
    color: var(--gold);
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('WhatsApp Image 2026-02-02 at 10.31.40 (1).jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    transition: var(--transition);
}

.cta-btn:hover {
    background-color: var(--gold);
    color: var(--black);
}

/* Products */
.product-section {
    padding: 5rem 5%;
    background-color: var(--bg-dark);
}

.section-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
}

.product-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    overflow: hidden;
    transition: var(--transition);
    position: relative;

}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.media-container {
    height: 320px;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.media-container img,
.media-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .media-container img {
    transform: scale(1.05);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
    pointer-events: none;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.product-price {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--gold);
    border: none;
    color: var(--black);
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.9;
}

.add-to-cart-btn:hover {
    opacity: 1;
    background-color: var(--gold-light);
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: #1a1a1a;
    z-index: 1000;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border-left: 1px solid var(--gold);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.cart-header h3 {
    font-family: var(--font-heading);
    color: var(--gold);
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 1px solid #333;
}

.item-details {
    flex: 1;
}

.item-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.item-price {
    color: var(--gold);
    font-size: 0.9rem;
}

.remove-btn {
    color: #ff4d4d;
    background: none;
    border: none;
    font-size: 0.8rem;
    cursor: pointer;
    margin-top: 0.5rem;
    text-decoration: underline;
}

.cart-footer {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--gold);
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

/* =========================================
   PREMIUM CENTERED CHECKOUT UI
   ========================================= */

.checkout-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 20px 60px;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
}

.checkout-card {
    background: rgba(20, 20, 20, 0.7);
    width: 100%;
    max-width: 600px;
    padding: 3rem 4rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

/* Subtle gold glow top border */
.checkout-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.checkout-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.checkout-header h1 {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.gold-divider {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 0 auto;
    border-radius: 2px;
}

/* Order Summary Compact */
.order-summary-compact {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.order-summary-compact h3 {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-align: center;
}

.items-list {
    margin-bottom: 1rem;
}

.compact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.item-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
    margin: 0 10px;
    position: relative;
    top: -4px;
}

.total-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: bold;
}

/* Form Styling */
.centered-form .form-group {
    margin-bottom: 2rem;
    position: relative;
}

.floating-input {
    width: 100%;
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--text-light);
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    border-radius: 0;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.floating-input:focus {
    outline: none;
    border-bottom: 1px solid var(--gold);
    box-shadow: 0 1px 0 0 var(--gold);
}

/* Floating Label Logic */
.floating-label {
    position: absolute;
    top: 0.8rem;
    left: 0;
    font-size: 1rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: 0.3s ease all;
}

.floating-input:focus~.floating-label,
.floating-input:not(:placeholder-shown)~.floating-label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--gold);
}

textarea.floating-input {
    min-height: 80px;
    resize: none;
}

/* Premium Button */
.confirm-order-btn-premium {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #D4AF37 0%, #B4941F 100%);
    color: #000;
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    /* Slightly refined corners */
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
}

.confirm-order-btn-premium:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
    background: linear-gradient(135deg, #E6C24B 0%, #D4AF37 100%);
}

.confirm-order-btn-premium i {
    transition: transform 0.3s ease;
}

.confirm-order-btn-premium:hover i {
    transform: translateX(5px);
}

.secure-notice {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    opacity: 0.7;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .checkout-wrapper {
        padding: 100px 15px 40px;
    }

    .checkout-card {
        padding: 2rem;
    }

    .checkout-header h1 {
        font-size: 2rem;
    }
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: auto;
    width: 100%;
    border-top: 1px solid #222;
}