/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Springbok/Rugby Colors */
    --springbok-green: #007749;
    --springbok-gold: #FFB81C;
    --dark-green: #005234;
    --light-green: #00A859;
    
    /* Nature/Bush/Hunting Colors */
    --bush-brown: #8B6F47;
    --sunset-orange: #D2691E;
    --khaki: #C3B091;
    --charcoal: #2C2C2C;
    --off-white: #F5F5DC;
    
    /* System Colors */
    --rugby-white: #FFFFFF;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-heavy: rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    color: white;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Background Image Slider */
.hero-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    animation: kenBurns 20s ease-in-out infinite;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Ken Burns zoom effect */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Dark overlay for readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 82, 52, 0.85) 0%,
        rgba(0, 119, 73, 0.75) 30%,
        rgba(139, 111, 71, 0.7) 70%,
        rgba(0, 119, 73, 0.8) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(210, 105, 30, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 111, 71, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 3;
}

.rugby-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 48px,
        rgba(255, 255, 255, 0.05) 48px,
        rgba(255, 255, 255, 0.05) 52px
    );
    pointer-events: none;
    z-index: 4;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 184, 28, 0.2);
}

.navbar.scrolled {
    background: rgba(0, 82, 52, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--springbok-gold) 0%, var(--sunset-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 184, 28, 0.4);
    transition: all 0.3s;
}

.logo:hover .logo-icon {
    transform: rotate(10deg);
    box-shadow: 0 6px 20px rgba(255, 184, 28, 0.6);
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--springbok-gold);
    margin: 0;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin: 4px 0 0 0;
    letter-spacing: 1px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--springbok-gold);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--springbok-gold);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--springbok-gold);
    background: rgba(255, 184, 28, 0.1);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link i {
    font-size: 0.9rem;
}

.cart-btn {
    background: var(--springbok-gold);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 184, 28, 0.3);
    border: 2px solid var(--springbok-gold);
}

.cart-btn:hover {
    background: var(--text-dark);
    color: var(--springbok-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 28, 0.5);
}

.cart-count {
    background: #ff0000;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.75rem;
    margin-left: 5px;
}

/* Hero Content */
.hero-content {
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    z-index: 10;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 184, 28, 0.2);
    border: 2px solid var(--springbok-gold);
    color: var(--springbok-gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    color: white;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--springbok-gold);
    margin-bottom: 15px;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: var(--springbok-gold);
    color: var(--text-dark);
    box-shadow: 0 5px 20px rgba(255, 184, 28, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 184, 28, 0.6);
    background: #ffcc33;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--springbok-gold);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
    scroll-margin-top: 80px;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--springbok-green);
    margin-bottom: 15px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--springbok-gold);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
    font-weight: 300;
    font-style: italic;
}

/* Features Section */
.features {
    background: 
        linear-gradient(135deg, rgba(245, 245, 220, 0.5) 0%, rgba(248, 249, 250, 0.8) 100%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%23f8f9fa"/><path d="M0 0L50 50M50 50L100 0M50 50L100 100M50 50L0 100" stroke="%238B6F47" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 100%, 100px 100px;
    position: relative;
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.05);
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--springbok-gold) 25%, 
        var(--springbok-green) 50%, 
        var(--springbok-gold) 75%, 
        transparent 100%
    );
}

.features::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--springbok-green) 25%, 
        var(--bush-brown) 50%, 
        var(--springbok-green) 75%, 
        transparent 100%
    );
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--springbok-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 119, 73, 0.1) 0%, rgba(255, 184, 28, 0.1) 100%);
    border: 3px solid var(--springbok-gold);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 20px var(--shadow);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--springbok-green);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Products Section */
.products {
    background: 
        linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 119, 73, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 184, 28, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--springbok-gold);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 10;
    letter-spacing: 1px;
}

.product-badge.best-value {
    background: #FF6B35;
    color: white;
}

.product-badge.premium {
    background: var(--springbok-green);
    color: white;
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f0f0f0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 30px;
}

.product-name {
    font-size: 1.8rem;
    color: var(--springbok-green);
    margin-bottom: 8px;
}

.product-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    color: var(--bush-brown);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-tag i {
    color: var(--sunset-orange);
}

.product-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.product-specs span {
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 5px 0;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--springbok-green);
}

.add-to-cart-btn {
    background: var(--springbok-green);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.add-to-cart-btn:hover {
    background: var(--dark-green);
    transform: scale(1.05);
}

/* Gallery Section */
.gallery {
    background: 
        linear-gradient(135deg, var(--charcoal) 0%, var(--dark-green) 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255, 184, 28, 0.05) 50px, rgba(255, 184, 28, 0.05) 52px);
    pointer-events: none;
}

.gallery .section-title {
    color: var(--springbok-gold);
}

.gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    position: relative;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    background: 
        linear-gradient(to bottom, var(--off-white) 0%, #ffffff 50%, var(--off-white) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 119, 73, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to left, rgba(139, 111, 71, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--springbok-green);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.contact-item .icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--springbok-green);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--springbok-green);
}

.submit-btn {
    background: var(--springbok-gold);
    color: var(--text-dark);
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
}

.submit-btn:hover {
    background: var(--springbok-green);
    color: white;
    transform: translateY(-2px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: var(--springbok-green);
}

#cart-items {
    margin: 30px 0;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 700;
    color: var(--springbok-green);
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--text-light);
}

.remove-item {
    background: #ff4444;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
}

.cart-total {
    text-align: right;
    padding: 20px 0;
    border-top: 2px solid var(--springbok-green);
    margin-top: 20px;
}

.cart-total h3 {
    font-size: 1.8rem;
    color: var(--springbok-green);
}

.checkout-btn {
    width: 100%;
    background: var(--springbok-green);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.checkout-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Back Button */
.back-btn {
    background: none;
    border: none;
    color: var(--springbok-green);
    cursor: pointer;
    font-size: 1rem;
    padding: 10px 0;
    margin-bottom: 15px;
    display: block;
}

.back-btn:hover {
    text-decoration: underline;
}

/* Shipping Form Styles */
.shipping-form {
    margin: 20px 0;
}

.shipping-form .form-group {
    margin-bottom: 15px;
}

.shipping-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.shipping-form input,
.shipping-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.shipping-form input:focus,
.shipping-form select:focus {
    outline: none;
    border-color: var(--springbok-green);
}

.shipping-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 500px) {
    .shipping-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Shipping Options */
.shipping-options {
    margin: 20px 0;
}

.shipping-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.shipping-option:hover {
    border-color: var(--springbok-green);
    background: #f9f9f9;
}

.shipping-option.selected {
    border-color: var(--springbok-green);
    background: rgba(0, 119, 73, 0.05);
}

.shipping-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    accent-color: var(--springbok-green);
}

.shipping-option-info {
    flex: 1;
}

.shipping-option-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.shipping-option-desc {
    font-size: 0.85rem;
    color: var(--text-light);
}

.shipping-option-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--springbok-green);
}

.shipping-loading {
    text-align: center;
    padding: 30px;
    color: var(--text-light);
}

.shipping-loading i {
    font-size: 2rem;
    margin-bottom: 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Order Summary */
.order-summary {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.order-summary h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--text-light);
}

.summary-row.total {
    border-top: 2px solid var(--springbok-green);
    margin-top: 10px;
    padding-top: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--springbok-green);
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
}

.empty-cart p:first-child {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Gallery Modal */
.gallery-modal-content {
    background-color: transparent;
    margin: 3% auto;
    width: 90%;
    max-width: 900px;
    text-align: center;
    position: relative;
}

.gallery-modal-content .close {
    color: white;
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 45px;
}

#gallery-modal-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}

.gallery-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.gallery-nav button {
    background: var(--springbok-gold);
    color: var(--text-dark);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
}

.gallery-nav button:hover {
    background: white;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: 
        linear-gradient(135deg, var(--charcoal) 0%, var(--dark-green) 50%, var(--charcoal) 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--springbok-gold) 50%, 
        transparent 100%
    );
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--springbok-gold);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-section h4 {
    color: var(--springbok-gold);
    margin-bottom: 15px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--springbok-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        padding: 100px 20px 60px;
    }
    
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: rgba(0, 82, 52, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 0;
        align-items: stretch;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .nav-link {
        width: 100%;
        padding: 15px 20px;
        border-radius: 10px;
        font-size: 1rem;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .cart-btn {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Empty Cart Message */
.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
}

.empty-cart p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

