/* ==========================================
   REDSTONE JEWELLERY - MAIN STYLES
   Gold, Black & White Theme - PROFESSIONAL
   ========================================== */

:root {
    --primary-gold: #0066FF;
    --dark-gold: #0052CC;
    --light-gold: #3385FF;
    --dark-bg: #000000;
    --dark-bg-secondary: #1a1a1a;
    --light-bg: #ffffff;
    --text-dark: #333333;
    --text-light: #ffffff;
    --border-color: #0066FF;
    --success: #27ae60;
    --error: #e74c3c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-bg);
}

/* ==========================================
   HEADER & NAVBAR
   ========================================== */

header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.25);
    border-bottom: 2px solid var(--primary-gold);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo:hover {
    color: var(--light-gold);
    opacity: 0.9;
    transform: scale(1.05);
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.4);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--light-gold));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Dropdown Menu Styling */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    padding: 0.8rem 0;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
    z-index: 1000;
    margin-top: 0.5rem;
    backdrop-filter: blur(10px);
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary-gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.dropdown-menu li a:hover {
    color: var(--primary-gold);
    background: rgba(0, 102, 255, 0.1);
    padding-left: 1.8rem;
}

.dropdown-menu li a:hover::before {
    transform: scaleY(1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

main > section.hero-video:first-child {
    margin-top: 0;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    border: 2px solid var(--dark-bg);
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 100%);
    color: var(--text-light);
    padding: 8rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ==========================================
   HERO VIDEO SECTION
   ========================================== */

.hero-video {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 0;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.65);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: var(--text-light);
    margin-right: auto;
    margin-left: 12%;
    margin-bottom: 25rem;
    padding-top: 25rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.2;
    word-wrap: break-word;
    white-space: normal;
}

.hero-tagline {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
    font-weight: 500;
}

.hero-description {
    font-size: 1.05rem;
    margin-bottom: 3rem;
    color: #d0d0d0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
    line-height: 1.9;
    max-width: 700px;
    font-weight: 300;
}

.hero-content .hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Hero Navigation Overlay */
.hero-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.hero-nav-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 3rem 0 0;
    width: 100%;
    gap: 2.5rem;
}

.hero-logo-nav {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 20;
    flex-shrink: 0;
}

.hero-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.hero-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero-nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    flex-shrink: 0;
    order: 2;
}

.hero-nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-nav-menu a:hover {
    color: var(--primary-gold);
}

/* We Buy Gold Navigation Link */
.we-buy-gold-nav {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%) !important;
    color: var(--dark-bg) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 4px;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3) !important;
    border: 2px solid #FFD700 !important;
    transition: all 0.3s ease !important;
}

.we-buy-gold-nav:hover {
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%) !important;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5) !important;
    transform: translateY(-2px) !important;
    color: var(--dark-bg) !important;
}

/* Hero Icons */
.hero-icon {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1.3rem;
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 0.5rem;
}

.hero-icon:hover {
    transform: scale(1.15);
    color: var(--primary-gold);
}

/* Hero Nav Toggle Button */
#nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    margin-left: 1rem;
}

#nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

#nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

#nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

#nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* We Buy Gold Button */
.btn-gold-buy {
    background: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    color: var(--dark-bg) !important;
    padding: 0.85rem 2rem !important;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.98rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: 2px solid #FFD700;
    letter-spacing: 0.5px;
}

.btn-gold-buy:hover {
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    color: var(--dark-bg) !important;
}

/* Floating Cart Button Container */
.floating-cart-container {
    position: fixed;
    bottom: 12rem;
    right: 2rem;
    z-index: 99;
}

/* Floating Cart Button */
.floating-cart {
    position: relative;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
    transition: all 0.3s ease;
    border: 3px solid white;
    color: var(--dark-bg);
    font-size: 1.8rem;
}

.floating-cart:hover {
    background: linear-gradient(135deg, var(--dark-gold) 0%, #B8860B 100%);
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid white;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background: var(--dark-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.btn-dark {
    background: var(--dark-bg-secondary);
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-dark:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.btn-desktop-only {
    display: inline-block !important;
}

.btn-mobile-only {
    display: none !important;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1.1rem 2.8rem;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20BA5C 100%) !important;
    color: white !important;
    border: none !important;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #20BA5C 0%, #1BA74E 100%) !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
}

.btn-view-details {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%) !important;
    color: var(--dark-bg) !important;
    border: none !important;
}

.btn-view-details:hover {
    background: linear-gradient(135deg, var(--dark-gold) 0%, #B8860B 100%) !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
}

.btn-add-to-cart {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%) !important;
    color: var(--dark-bg) !important;
    border: none !important;
    padding: 0.75rem 1rem !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
}

.btn-add-to-cart:hover {
    background: linear-gradient(135deg, var(--dark-gold) 0%, #0052CC 100%) !important;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3) !important;
    transform: translateY(-2px) !important;
}

/* Product Card Overlay Styles */
.product-card-overlay {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-overlay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
    color: white;
    padding: 2rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.product-card:hover .product-overlay-info {
    transform: translateY(0);
}

.product-overlay-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-gold);
    font-weight: 700;
}

.product-overlay-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    line-height: 1.3;
}

.product-overlay-price {
    font-size: 1.4rem;
    color: var(--primary-gold);
    font-weight: bold;
}

.product-overlay-buttons {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.8rem;
}

/* ==========================================
   CONTAINER & GRID
   ========================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4rem 0;
    background-color: var(--dark-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-gold);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-gold);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* ==========================================
   PRODUCT CARD
   ========================================== */

.product-card {
    background: var(--dark-bg-secondary);
    border: 1px solid var(--primary-gold);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.15);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.3);
    transform: translateY(-8px);
    border-color: var(--light-gold);
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--dark-bg);
}

.product-info {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: var(--primary-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.product-name {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0.5rem 0;
    font-weight: 600;
}

.product-price {
    font-size: 1.4rem;
    color: var(--primary-gold);
    font-weight: bold;
    margin: 0.5rem 0;
}

.product-description {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex: 1;
}

.product-footer {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.product-footer button,
.product-footer a {
    flex: 1;
}

/* ==========================================
   FEATURED SECTION
   ========================================== */

.featured {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 100%);
    border-top: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
    box-shadow: inset 0 2px 10px rgba(0, 102, 255, 0.1);
}

.featured .grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about {
    background: var(--dark-bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.about-text p {
    color: #d0d0d0;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-text ul li {
    color: #d0d0d0;
    margin-bottom: 0.5rem;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--primary-gold);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 100%);
    color: var(--text-light);
    border-top: 2px solid var(--primary-gold);
}

.service-card {
    background: rgba(0, 102, 255, 0.08);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--primary-gold);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.1);
}

.service-card:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.3);
}

.service-card:hover h3,
.service-card:hover p {
    color: var(--dark-bg);
}

.service-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.service-card:hover .service-icon {
    color: var(--dark-bg);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
}

.service-card p {
    color: #d0d0d0;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */

.testimonials {
    background: var(--dark-bg-secondary);
    border-top: 2px solid var(--primary-gold);
}

.testimonial-card {
    background: rgba(0, 102, 255, 0.08);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(0, 102, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.2);
}

.testimonial-text {
    margin-bottom: 1rem;
    color: #d0d0d0;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary-gold);
}

.stars {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

/* ==========================================
   SHOPPING CART
   ========================================== */

.cart-page {
    padding: 2rem;
    background: var(--dark-bg);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.cart-table th {
    background: var(--dark-bg-secondary);
    color: var(--primary-gold);
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid var(--primary-gold);
}

.cart-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--primary-gold);
    border-radius: 4px;
    width: fit-content;
}

.quantity-control button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    color: var(--primary-gold);
}

.quantity-control input {
    width: 50px;
    border: none;
    text-align: center;
    font-weight: bold;
    background: var(--dark-bg-secondary);
    color: var(--text-light);
}

.cart-summary {
    max-width: 400px;
    margin-left: auto;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    padding: 2rem;
    border-radius: 8px;
    color: var(--dark-bg);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(26, 26, 26, 0.3);
}

.summary-row.total {
    border-bottom: none;
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--dark-bg);
}

/* ==========================================
   CHECKOUT PAGE
   ========================================== */

.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    padding: 2rem;
    background: var(--dark-bg);
}

.checkout-form {
    background: var(--dark-bg-secondary);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.1);
    border: 1px solid var(--primary-gold);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-gold);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--primary-gold);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--dark-bg);
    color: var(--text-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
    color: #777;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--light-gold);
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkout-summary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
    color: var(--dark-bg);
}

.order-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(26, 26, 26, 0.3);
}

.order-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.order-item-details h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-bg);
}

.order-item-details p {
    font-size: 0.9rem;
    color: rgba(26, 26, 26, 0.8);
}

/* ==========================================
   CONTACT FORM
   ========================================== */

.contact-section {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3 {
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-info-item {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: #d0d0d0;
    margin-bottom: 0.3rem;
    line-height: 1.8;
}

.contact-info-item a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--light-gold);
    text-decoration: underline;
}

.contact-form {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--primary-gold);
}

.contact-form h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid var(--primary-gold);
    border-radius: 4px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--light-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-gold);
    color: var(--dark-bg);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container {
        padding: 0 1.2rem;
    }

    .nav-toggle {
        display: flex;
    }

    #nav-toggle {
        display: flex;
    }

    .navbar {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0 1rem;
    }

    .logo-img {
        height: 55px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        position: static;
        background: transparent;
        padding: 0;
        order: 3;
    }

    .nav-menu.active {
        max-height: 500px;
        padding: 1.5rem 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1rem;
    }

    /* Mobile dropdown menu */
    .dropdown-menu {
        position: static;
        display: none;
        background: rgba(0, 102, 255, 0.05);
        border: none;
        border-left: 3px solid var(--primary-gold);
        border-radius: 0;
        padding: 0.5rem 0 0.5rem 1rem;
        margin-left: 1rem;
        margin-top: 0.5rem;
        box-shadow: none;
        min-width: unset;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 0.5rem 0;
        font-size: 0.95rem;
    }

    .dropdown-menu li a::before {
        display: none;
    }

    .dropdown-menu li a:hover {
        padding-left: 0;
    }

    .hero-nav-top {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        gap: 0.5rem;
        flex-wrap: wrap;
        overflow: visible;
        padding: 1rem 0.8rem 0 0;
    }

    .hero-logo-nav {
        position: absolute;
        top: 0.8rem;
        left: 0.8rem;
        z-index: 20;
        flex-shrink: 0;
    }

    .hero-nav-menu {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .hero-nav-menu.active {
        max-height: 500px;
        gap: 1rem;
        padding: 1rem;
        background: rgba(0, 0, 0, 0.95);
        border-radius: 4px;
        backdrop-filter: blur(10px);
    }

    .hero-nav-menu a {
        font-size: 1rem;
        width: 100%;
        padding: 0.8rem 0;
    }

    .btn-gold-buy {
        width: 100%;
        text-align: center;
        display: none;
        margin-top: 0.5rem;
    }

    #nav-toggle {
        flex-shrink: 0;
        padding: 0.5rem;
        z-index: 15;
        order: 2;
        margin-left: auto;
    }

    #nav-toggle span {
        width: 22px;
        height: 2.5px;
    }

    .hero-nav-menu.active ~ .btn-gold-buy {
        display: block;
        margin-top: 1rem;
    }

    .hero-logo-img {
        height: 65px;
    }

    .hero-content {
        margin-left: 4%;
        margin-right: 4%;
        margin-bottom: 2rem;
        padding-top: 7rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-tagline {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.7;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }

    .btn-lg {
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }

    /* Navbar mobile styles */
    .nav-toggle {
        display: flex;
    }

    .product-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .featured .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 1.2rem;
    }

    .product-name {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.3rem;
    }

    .product-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .product-footer {
        gap: 0.6rem;
    }

    .btn-sm {
        padding: 0.5rem 0.9rem;
        font-size: 0.9rem;
    }

    .floating-cart-container {
        bottom: 7.5rem;
        right: 1.2rem;
    }

    .floating-cart {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2.3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 1.6rem;
    }

    .about-image {
        height: 300px;
    }

    .about-video {
        min-height: 250px;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .contact-form button {
        padding: 0.8rem;
        font-size: 1rem;
    }

    footer {
        padding: 2rem 0 0.8rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section ul li,
    .footer-section p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .hero-content {
        padding-top: 5rem;
        margin-left: 3%;
        margin-right: 3%;
        margin-bottom: 1.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .btn-lg {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.6rem;
    }

    .section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .checkout-summary {
        order: -1;
    }

    .floating-cart-container {
        bottom: 6rem;
        right: 0.8rem;
    }

    .floating-cart {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .btn-desktop-only {
        display: none !important;
    }

    .btn-mobile-only {
        display: inline-block !important;
    }

    .contact-info-item {
        margin-bottom: 1.8rem;
        padding-bottom: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.7rem;
        font-size: 0.95rem;
    }

    .contact-form button {
        padding: 0.7rem;
        font-size: 0.95rem;
    }

    .service-card {
        padding: 1.2rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .about-text h2 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .about-text p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .about-text ul li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .about-video {
        min-height: 200px;
    }

    .about-image {
        height: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .footer-section ul,
    .footer-section p {
        font-size: 0.85rem;
    }

    .footer-section ul li {
        margin-bottom: 0.4rem;
    }

    .checkout-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .checkout-form {
        padding: 1.5rem;
    }

    .checkout-summary {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cart-table {
        font-size: 0.9rem;
    }

    .cart-table th,
    .cart-table td {
        padding: 0.8rem 0.5rem;
    }

    .cart-item-image {
        width: 70px;
        height: 70px;
    }

    .cart-summary {
        padding: 1.5rem;
    }

    .summary-row {
        font-size: 0.95rem;
    }

    .buy-gold-container {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step {
        padding: 1.5rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .benefit-card {
        padding: 1rem;
        gap: 1rem;
    }

    .benefit-text h3 {
        font-size: 1rem;
    }

    .benefit-text p {
        font-size: 0.85rem;
    }

    .whatsapp-button {
        width: 55px;
        height: 55px;
        bottom: 1.5rem;
        right: 1rem;
    }

    .hero-logo-img {
        height: 55px;
    }

    .hero-nav-top {
        padding: 0.8rem 0.6rem 0 0;
    }

    .hero-logo-nav {
        top: 0.6rem;
        left: 0.6rem;
    }

    /* For extra small screens */
    @media (max-width: 360px) {
        .hero-content h1 {
            font-size: 1.3rem;
            letter-spacing: 0.5px;
        }

        .hero-description {
            font-size: 0.8rem;
            margin-bottom: 1rem;
        }

        .hero-content {
            padding-top: 4rem;
        }

        .section-title {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
        }

        .btn {
            padding: 0.65rem 1rem;
            font-size: 0.85rem;
        }

        .product-card {
            flex: 1 1 100%;
        }

        .service-card {
            padding: 1rem;
        }

        .service-icon {
            font-size: 1.8rem;
        }

        .contact-form {
            padding: 1.2rem;
        }

        .contact-info-item {
            margin-bottom: 1.5rem;
        }

        .footer-section h4 {
            font-size: 0.95rem;
        }

        .footer-section ul li,
        .footer-section p {
            font-size: 0.8rem;
        }

        .floating-cart-container {
            bottom: 4.2rem;
            right: 0.6rem;
        }

        .floating-cart {
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
        }
    }
}

/* ==========================================
   FOOTER
   ========================================== */

footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-secondary) 100%);
    color: var(--text-light);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--primary-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-section p {
    color: #b0b0b0;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    text-align: center;
    color: #888;
}

.footer-bottom a {
    color: var(--primary-gold);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ==========================================
   FLOATING WHATSAPP BUTTON
   ========================================== */

.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5C 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 98;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    border: 3px solid white;
}

.whatsapp-button:hover {
    background: linear-gradient(135deg, #20BA5C 0%, #1BA74E 100%);
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-button svg,
.whatsapp-button i {
    width: 30px;
    height: 30px;
    color: white;
    font-size: 30px;
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    color: var(--primary-gold);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid var(--primary-gold);
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 75px;
}

/* ==========================================
   MODAL / POPUP
   ========================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--dark-bg-secondary);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideIn 0.3s ease;
    border: 1px solid var(--primary-gold);
    color: var(--text-light);
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary-gold);
}

/* ==========================================
   LOADING & ERROR STATES
   ========================================== */

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--border-color);
    border-radius: 50%;
    border-top-color: var(--primary-gold);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.alert-success {
    background: rgba(39, 174, 96, 0.2);
    color: #90EE90;
    border: 1px solid #27ae60;
}

.alert-error {
    background: rgba(231, 76, 60, 0.2);
    color: #FF6B6B;
    border: 1px solid #e74c3c;
}

.alert-info {
    background: rgba(52, 152, 219, 0.2);
    color: #87CEEB;
    border: 1px solid #3498db;
}

/* ==========================================
   WE BUY GOLD PAGE
   ========================================== */

.buy-gold-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.buy-gold-info {
    padding: 2rem 0;
}

.benefit-card {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 102, 255, 0.08);
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
    border: 1px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(0, 102, 255, 0.15);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.2);
    transform: translateX(5px);
}

.benefit-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    color: var(--primary-gold);
}

.benefit-text h3 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-text p {
    color: #d0d0d0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.buy-gold-form {
    background: var(--dark-bg-secondary);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.1);
    border: 1px solid var(--primary-gold);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 102, 255, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-gold);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.1);
}

.step:hover {
    background: rgba(0, 102, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.3);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.step p {
    color: #d0d0d0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .buy-gold-container {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .checkout-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* End of CSS File */
