/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #111111;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #D4AF37;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #D4AF37;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    /* Fallback background when video is not available */
    background: 
        radial-gradient(circle at 30% 70%, rgba(139, 69, 19, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(160, 82, 45, 0.6) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(101, 67, 33, 0.9) 0%, transparent 70%),
        linear-gradient(135deg, #2c1810 0%, #1a0f0a 50%, #0d0704 100%);
    background-size: 300px 300px, 400px 400px, 500px 500px, 100% 100%;
    animation: steakBackground 20s ease-in-out infinite;
}

@keyframes steakBackground {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 0% 0%;
    }
    25% {
        background-position: 100% 0%, 0% 100%, 30% 70%, 0% 0%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 70% 30%, 0% 0%;
    }
    75% {
        background-position: 0% 100%, 100% 0%, 50% 50%, 0% 0%;
    }
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #D4AF37;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Cart Button */
.cart-container {
    position: relative;
}

.cart-btn {
    background: none;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    padding: 10px 15px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.cart-btn:hover {
    background: #D4AF37;
    color: #000000;
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #D4AF37;
    color: #000000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Hamburger Menu */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: 2px solid #D4AF37;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 4px;
}

.hamburger-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #ffffff;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: #D4AF37;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #333333;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-menu-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 1rem 0;
    border-bottom: 1px solid #333333;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.1rem;
}

.mobile-menu-link:last-child {
    border-bottom: none;
}

.mobile-menu-link:hover {
    color: #D4AF37;
    padding-left: 1rem;
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.mobile-menu-link:hover::before {
    width: 20px;
}

/* Logo */
.logo {
    margin-bottom: 2rem;
}

.bull-logo {
    width: 290px;
    height: 220px;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    animation: logoGlow 3s ease-in-out infinite alternate;
    object-fit: contain;
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.8));
    }
}

/* Hero Content */
.hero-content {
    z-index: 10;
}

.main-title {
    font-size: 5rem;
    color: #D4AF37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    font-style: italic;
    letter-spacing: 2px;
}

.cta-button {
    background: #D4AF37;
    color: #000000;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(212, 175, 55, 0.02) 20px,
            rgba(212, 175, 55, 0.02) 40px
        );
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    filter: contrast(1.2) brightness(0.9);
}

/* Fallback background for missing image */
.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, 
        #8B4513 0%, 
        #A0522D 15%, 
        #CD853F 30%, 
        #8B4513 45%, 
        #654321 60%, 
        #8B4513 75%, 
        #A0522D 90%, 
        #654321 100%);
    border-radius: 10px;
    z-index: 1;
}

.about-image img {
    position: relative;
    z-index: 2;
}

/* Hide the fallback when image loads */
.about-image img:not([src=""]):not([src*="premium-steak.jpg"]) + .about-image::before {
    display: none;
}

.geometric-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid #D4AF37;
    border-radius: 10px;
    opacity: 0.3;
    transform: rotate(45deg);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
    line-height: 1.8;
}

/* Shop Section */
.shop-section {
    padding: 100px 0;
    background: #000000;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border: 2px solid #333333;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover {
    border-color: #D4AF37;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    margin-bottom: 2rem;
}

.steak-icon {
    width: 150px;
    height: 100px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    object-fit: cover;
    border-radius: 10px;
}

.product-info h3 {
    margin-bottom: 1rem;
}

.product-info p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 2rem;
}

.quantity-controls {
    margin-bottom: 2rem;
}

.quantity-controls label {
    display: block;
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.qty-btn {
    background: #D4AF37;
    color: #000000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #ffffff;
    transform: scale(1.1);
}

.quantity {
    font-size: 1.2rem;
    font-weight: 600;
    color: #D4AF37;
    min-width: 60px;
}

.add-to-cart-btn {
    background: linear-gradient(45deg, #D4AF37, #f4d03f);
    color: #000000;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.add-to-cart-btn:hover {
    background: linear-gradient(45deg, #f4d03f, #D4AF37);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: linear-gradient(180deg, #1a1a1a, #111111);
    border-left: 2px solid #D4AF37;
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid #333333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    color: #D4AF37;
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    color: #D4AF37;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-cart:hover {
    color: #ffffff;
}

.cart-items {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    color: #666666;
    font-style: italic;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #333333;
}

.cart-item-info h4 {
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.cart-item-info p {
    color: #cccccc;
    font-size: 0.9rem;
}

.cart-item-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-item-price {
    color: #ffffff;
    font-weight: 600;
}

.remove-item-btn {
    background: #dc3545;
    border: none;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.remove-item-btn:hover {
    background: #c82333;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.remove-item-btn:active {
    transform: scale(0.95);
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid #333333;
}

.cart-total {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #D4AF37;
}

.checkout-btn {
    background: #D4AF37;
    color: #000000;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #111111 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-item i {
    color: #D4AF37;
    font-size: 1.5rem;
    width: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #333333;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

.submit-btn {
    background: #D4AF37;
    color: #000000;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Contact Message Styles */
.contact-message {
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-message.success {
    background: rgba(40, 167, 69, 0.2);
    border: 2px solid #28a745;
    color: #28a745;
}

.contact-message.error {
    background: rgba(220, 53, 69, 0.2);
    border: 2px solid #dc3545;
    color: #dc3545;
}

/* Footer */
.footer {
    background: #000000;
    padding: 2rem 0;
    border-top: 1px solid #333333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bull-logo-small {
    width: 60px;
    height: 45px;
    object-fit: contain;
}

.footer-text p {
    color: #888888;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #D4AF37;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    /* Hide regular navigation on mobile */
    .nav-links {
        display: none;
    }
    
    /* Show hamburger menu on mobile */
    .hamburger-btn {
        display: flex;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Animation for cart wiggle */
@keyframes wiggle {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
}

.cart-btn.wiggle {
    animation: wiggle 0.5s ease-in-out;
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* ===== CHECKOUT PAGES STYLES ===== */

/* Checkout Header */
.checkout-header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid #333333;
}

.checkout-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    color: #D4AF37;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #ffffff;
}

.logo-small {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bull-logo-checkout {
    width: 50px;
    height: 38px;
    object-fit: contain;
}

.brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #D4AF37;
}

/* Checkout Main */
.checkout-main {
    min-height: calc(100vh - 100px);
    padding: 40px 0;
}

/* Progress Indicator */
.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #333333;
    color: #888888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: #D4AF37;
    color: #000000;
}

.progress-step.completed .step-number {
    background: #28a745;
    color: #ffffff;
}

.progress-step span {
    font-size: 0.9rem;
    color: #cccccc;
    text-align: center;
    white-space: nowrap;
}

.progress-step.active span {
    color: #D4AF37;
    font-weight: 600;
}

.progress-line {
    width: 150px;
    height: 2px;
    background: #333333;
    margin: 0 1rem;
    position: relative;
    top: -25px;
}

.progress-line.completed {
    background: #28a745;
}

/* Checkout Content Layout */
.checkout-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Order Summary Section */
.order-summary-section h2,
.customer-details-section h2 {
    color: #D4AF37;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.order-summary {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border: 2px solid #333333;
    border-radius: 15px;
    padding: 2rem;
    position: sticky;
    top: 120px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid #333333;
}

.summary-item:last-child {
    border-bottom: none;
}

.item-info h4 {
    color: #D4AF37;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.item-info p {
    color: #cccccc;
    font-size: 0.9rem;
}

.item-price {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.summary-totals {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #D4AF37;
}

.total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.total-line.final-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: #D4AF37;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333333;
}

/* Checkout Form */
.checkout-form {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border: 2px solid #333333;
    border-radius: 15px;
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #D4AF37;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

/* Delivery Options */
.delivery-options {
    margin: 2rem 0;
}

.delivery-options h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.delivery-option {
    margin-bottom: 1rem;
}

.delivery-option input[type="radio"] {
    display: none;
}

.delivery-option label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333333;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delivery-option input[type="radio"]:checked + label {
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
}

.option-info {
    display: flex;
    flex-direction: column;
}

.option-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.option-desc {
    color: #cccccc;
    font-size: 0.9rem;
}

.option-price {
    color: #D4AF37;
    font-weight: 600;
}

/* Continue Button */
.continue-btn {
    background: linear-gradient(45deg, #D4AF37, #f4d03f);
    color: #000000;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.continue-btn:hover {
    background: linear-gradient(45deg, #f4d03f, #D4AF37);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* ===== CONFIRMATION PAGE STYLES ===== */

.confirmation-content {
    max-width: 1000px;
    margin: 0 auto;
}

.confirmation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.confirmation-header h1 {
    color: #D4AF37;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.confirmation-header p {
    color: #cccccc;
    font-size: 1.2rem;
}

.confirmation-sections {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.confirmation-section {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border: 2px solid #333333;
    border-radius: 15px;
    padding: 2rem;
}

.confirmation-section h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #D4AF37;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.confirmation-section h2 i {
    font-size: 1.5rem;
}

/* Customer Details Grid */
.details-grid {
    display: grid;
    gap: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid #333333;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: #cccccc;
    font-weight: 500;
    min-width: 120px;
}

.detail-value {
    color: #ffffff;
    font-weight: 600;
    text-align: right;
    flex: 1;
}

/* Confirmation Actions */
.confirmation-actions {
    text-align: center;
}

.confirm-order-btn {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.confirm-order-btn:hover {
    background: linear-gradient(45deg, #20c997, #28a745);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
}

.confirm-order-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.confirmation-note {
    color: #888888;
    font-size: 0.9rem;
    font-style: italic;
}

/* ===== SUCCESS MODAL STYLES ===== */

.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-modal.show {
    opacity: 1;
}

.modal-content {
    background: linear-gradient(145deg, #1a1a1a, #111111);
    border: 2px solid #D4AF37;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.success-modal.show .modal-content {
    transform: scale(1);
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1.5rem;
}

.modal-content h2 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.modal-content p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.order-info {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid #D4AF37;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.order-info p {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.order-info p:last-child {
    margin-bottom: 0;
}

.continue-shopping-btn {
    background: linear-gradient(45deg, #D4AF37, #f4d03f);
    color: #000000;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.continue-shopping-btn:hover {
    background: linear-gradient(45deg, #f4d03f, #D4AF37);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* ===== RESPONSIVE DESIGN FOR CHECKOUT ===== */

@media (max-width: 768px) {
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .order-summary {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkout-nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .progress-step span {
        font-size: 0.8rem;
    }
    
    .progress-line {
        width: 100px;
    }
    
    .confirmation-header h1 {
        font-size: 2rem;
    }
    
    .confirmation-header p {
        font-size: 1rem;
    }
    
    .modal-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .detail-value {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .checkout-main {
        padding: 20px 0;
    }
    
    .checkout-form,
    .order-summary,
    .confirmation-section {
        padding: 1.5rem;
    }
    
    .progress-step {
        font-size: 0.8rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .progress-line {
        width: 80px;
        top: -20px;
    }
}
