

:root {
    /* Gold Color Palette */
    --gold-primary: #D4AF37;
    --gold-light: #FFD700;
    --gold-dark: #B8860B;
    --gold-darker: #8B6914;
    --gold-pale: #F4E4C1;
    --gold-shine: #FFEAA7;
    
    /* Yellow Accents */
    --yellow-primary: #FFC107;
    --yellow-light: #FFEB3B;
    --yellow-dark: #FFA000;
    
    /* Neutral Colors */
    --dark-primary: #1a1a1a;
    --dark-secondary: #2d2d2d;
    --dark-tertiary: #3a3a3a;
    --light-primary: #ffffff;
    --light-secondary: #f8f9fa;
    --light-tertiary: #e9ecef;
    
    /* Semantic Colors */
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    
    /* Shadows & Effects */
    --shadow-sm: 0 2px 4px rgba(212, 175, 55, 0.1);
    --shadow-md: 0 4px 8px rgba(212, 175, 55, 0.15);
    --shadow-lg: 0 8px 16px rgba(212, 175, 55, 0.2);
    --shadow-xl: 0 12px 24px rgba(212, 175, 55, 0.25);
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 15px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    direction: rtl;
    text-align: right;
    background: var(--light-primary);
    color: var(--dark-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

.gold-page {
    overflow: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/*==============================================
  HERO SECTION
==============================================*/
.gold-hero {
    position: relative;
    min-height: 100vh;
    padding: 150px 0 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="gold-grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23D4AF37;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23FFD700;stop-opacity:0.05"/></linearGradient></defs><rect fill="url(%23gold-grad)" width="1200" height="600"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(255, 215, 0, 0.03) 50px, rgba(255, 215, 0, 0.03) 100px);
}

/* Gold Particles Animation */
.gold-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gold-particles::before,
.gold-particles::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold-light);
    border-radius: 50%;
    box-shadow: 
        0 0 10px var(--gold-light),
        200px 100px 0 var(--gold-primary),
        400px 200px 0 var(--gold-shine),
        600px 50px 0 var(--gold-light),
        800px 300px 0 var(--gold-primary),
        1000px 150px 0 var(--gold-shine);
    animation: particlesFloat 20s linear infinite;
}

.gold-particles::after {
    animation-delay: -10s;
}

@keyframes particlesFloat {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-1000px) translateX(100px); }
}

/* Price Ticker */
.price-ticker {
    position: relative;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    padding: 20px 40px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-lg);
}

.ticker-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.ticker-item i {
    color: var(--gold-primary);
    font-size: 20px;
}

.ticker-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.ticker-price {
    color: var(--gold-light);
    font-size: 18px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.ticker-unit {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.ticker-change {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.ticker-change.up {
    background: rgba(40, 167, 69, 0.2);
    color: #4caf50;
}

.ticker-change.down {
    background: rgba(220, 53, 69, 0.2);
    color: #f44336;
}

.ticker-divider {
    width: 1px;
    height: 30px;
    background: rgba(212, 175, 55, 0.3);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    color: var(--dark-primary);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: var(--shadow-gold);
    animation: badgePulse 2s ease infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow-gold); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(255, 215, 0, 0.5); }
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--light-primary);
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-shine) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Hero Mini Features */
.hero-features-mini {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.feature-mini i {
    color: var(--gold-primary);
    font-size: 20px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-hero.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    color: var(--dark-primary);
    box-shadow: var(--shadow-gold);
}

.btn-hero.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.btn-hero.btn-outline {
    background: transparent;
    color: var(--light-primary);
    border: 2px solid var(--gold-primary);
}

.btn-hero.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--dark-primary);
    transform: translateY(-3px);
}

/* Hero Trust Stats */
.hero-trust {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 30px;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.trust-item {
    text-align: center;
}

.trust-item h4 {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 5px;
}

.trust-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.trust-divider {
    width: 1px;
    height: 50px;
    background: rgba(212, 175, 55, 0.3);
}

/* Hero Mockup */
.hero-mockup {
    position: relative;
    z-index: 2;
}

.mockup-main {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    border: 3px solid var(--gold-primary);
}

.mockup-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

.mockup-main:hover img {
    transform: scale(1.05);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-xl);
    animation: floatCard 3s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Product Card (Floating) */
.floating-card.product-card {
    top: 20%;
    right: -50px;
    width: 250px;
    animation-delay: 0s;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.product-badge.hot {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.floating-card.product-card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

.product-info h6 {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--dark-primary);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-new {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold-dark);
}

.price-old {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}

/* Coin Card (Floating) */
.floating-card.coin-card {
    bottom: 30%;
    right: -30px;
    width: 200px;
    animation-delay: 1s;
}

.coin-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.coin-icon i {
    font-size: 24px;
    color: var(--dark-primary);
}

.coin-content h6 {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--dark-primary);
}

.coin-price {
    margin-bottom: 5px;
}

.coin-price .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-dark);
}

.coin-price .unit {
    font-size: 12px;
    color: #666;
    margin-right: 5px;
}

.coin-change {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    background: rgba(40, 167, 69, 0.1);
    color: #4caf50;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

/* Certificate Card (Floating) */
.floating-card.certificate-card {
    top: 50%;
    left: -40px;
    width: 200px;
    animation-delay: 2s;
}

.certificate-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.certificate-badge i {
    font-size: 28px;
    color: var(--dark-primary);
}

.certificate-content h6 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark-primary);
}

.certificate-content p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-primary), transparent);
    margin: 0 auto;
    animation: scrollLineMove 2s ease infinite;
}

@keyframes scrollLineMove {
    0% { height: 0; opacity: 0; }
    50% { height: 40px; opacity: 1; }
    100% { height: 40px; opacity: 0; }
}

/*==============================================
  STATS SECTION
==============================================*/
.gold-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    margin-top: -50px;
    z-index: 3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-box {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-primary);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.stat-icon i {
    font-size: 36px;
    color: var(--dark-primary);
}

.stat-content h3 {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.stat-content p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/*==============================================
  CATEGORIES SECTION
==============================================*/
.gold-categories {
    padding: var(--section-padding);
    background: white;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    color: var(--gold-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid var(--gold-primary);
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Hexagon Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.category-hexagon {
    position: relative;
    cursor: pointer;
}

.hexagon-wrapper {
    position: relative;
    width: 200px;
    height: 230px;
    margin: 0 auto;
}

.hexagon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

.category-hexagon:hover .hexagon-wrapper::before {
    transform: translateX(-50%) scale(1.1);
    box-shadow: var(--shadow-gold);
}

.hexagon-content {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 190px;
    height: 190px;
    background: white;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
}

.category-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.category-hexagon:hover .category-icon {
    transform: rotate(360deg);
}

.category-icon i {
    font-size: 32px;
    color: var(--dark-primary);
}

.hexagon-content h4 {
    font-size: 18px;
    color: var(--dark-primary);
    margin-bottom: 5px;
}

.hexagon-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/*==============================================
  PRODUCTS SECTION
==============================================*/
.gold-products {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Product Filters */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    color: var(--dark-primary);
    border: 2px solid #e9ecef;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.filter-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-dark);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    color: var(--dark-primary);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-primary);
}

/* Product Image */
.product-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    z-index: 2;
}

.product-badge.hot {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.product-badge.new {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.product-badge.discount {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition-base);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-action {
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    transform: translateY(20px);
}

.product-card:hover .product-action {
    transform: translateY(0);
}

.product-action:nth-child(1) {
    transition-delay: 0.1s;
}

.product-action:nth-child(2) {
    transition-delay: 0.2s;
}

.product-action:nth-child(3) {
    transition-delay: 0.3s;
}

.product-action:hover {
    background: var(--gold-primary);
    transform: scale(1.1);
}

.product-action i {
    font-size: 18px;
    color: var(--dark-primary);
}

/* Product Content */
.product-content {
    padding: 25px;
}

.product-title {
    font-size: 16px;
    color: var(--dark-primary);
    margin-bottom: 15px;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.product-weight,
.product-purity {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
}

.product-meta i {
    color: var(--gold-primary);
    font-size: 14px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product-price .price-new {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold-dark);
    font-family: 'Courier New', monospace;
}

.product-price .price-new::after {
    content: ' تومان';
    font-size: 14px;
    font-weight: 500;
}

.product-price .price-old {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.product-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    color: var(--dark-primary);
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.product-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.product-btn:hover::before {
    width: 300px;
    height: 300px;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/*==============================================
  FEATURES SECTION
==============================================*/
.gold-features {
    padding: var(--section-padding);
    background: white;
}

.features-grid-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-xl);
}

.feature-icon-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-base);
}

.feature-box:hover .feature-icon-circle {
    transform: rotate(360deg);
}

.feature-icon-circle i {
    font-size: 42px;
    color: var(--dark-primary);
}

.feature-box h5 {
    font-size: 20px;
    color: var(--dark-primary);
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/*==============================================
  TESTIMONIALS SECTION
==============================================*/
.gold-testimonials {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card-gold {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 2px solid transparent;
    position: relative;
}

.testimonial-card-gold:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-primary);
}

.testimonial-card-gold.featured {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-color: var(--gold-primary);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.featured-badge i {
    font-size: 20px;
    color: var(--dark-primary);
}

.testimonial-quote {
    font-size: 60px;
    color: var(--gold-primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 10px;
    font-family: Georgia, serif;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--gold-primary);
    object-fit: cover;
}

.customer-info h5 {
    font-size: 18px;
    color: var(--dark-primary);
    margin-bottom: 5px;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: var(--gold-primary);
    font-size: 14px;
}

.testimonial-body {
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.purchase-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #999;
}

.purchase-date i {
    color: var(--gold-primary);
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--success);
    background: rgba(40, 167, 69, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
}

.verified-badge i {
    font-size: 14px;
}

/*==============================================
  CTA SECTION
==============================================*/
.gold-cta {
    padding: var(--section-padding);
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><radialGradient id="cta-grad"><stop offset="0%" style="stop-color:%23D4AF37;stop-opacity:0.2"/><stop offset="100%" style="stop-color:%23D4AF37;stop-opacity:0"/></radialGradient></defs><circle cx="600" cy="300" r="400" fill="url(%23cta-grad)"/></svg>');
    background-size: cover;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(212, 175, 55, 0.03) 50px, rgba(212, 175, 55, 0.03) 100px);
}

.cta-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    animation: ctaShine 8s linear infinite;
}

@keyframes ctaShine {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

/* CTA Content */
.cta-content {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    color: var(--dark-primary);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--light-primary);
    line-height: 1.3;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* CTA Features List */
.cta-features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.cta-feature-item i {
    color: var(--gold-primary);
    font-size: 18px;
}

/* CTA Actions */
.cta-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    color: var(--dark-primary);
    box-shadow: var(--shadow-gold);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.cta-btn.outline {
    background: transparent;
    color: var(--light-primary);
    border: 2px solid var(--gold-primary);
}

.cta-btn.outline:hover {
    background: var(--gold-primary);
    color: var(--dark-primary);
}

/* CTA Calculator */
.cta-calculator {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--gold-primary);
}

.calculator-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gold-primary);
}

.calculator-header i {
    font-size: 48px;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.calculator-header h4 {
    font-size: 24px;
    color: var(--dark-primary);
    margin: 0;
}

/* Calculator Form */
#goldCalculator .form-group {
    margin-bottom: 25px;
}

#goldCalculator label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-primary);
    margin-bottom: 10px;
}

#goldCalculator .form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    transition: var(--transition-base);
    background: white;
}

#goldCalculator .form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

/* Calculator Result */
.calculator-result {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid var(--gold-primary);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    margin-bottom: 25px;
}

.result-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.result-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--gold-dark);
    font-family: 'Courier New', monospace;
}

/* Calculator Button */
.calculator-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    color: var(--dark-primary);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

.calculator-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/*==============================================
  NEWSLETTER SECTION
==============================================*/
.gold-newsletter {
    padding: 80px 0;
    background: white;
}

.newsletter-box {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: newsletterShine 6s linear infinite;
}

@keyframes newsletterShine {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-lg);
}

.newsletter-icon i {
    font-size: 36px;
    color: var(--gold-dark);
}

.newsletter-title {
    font-size: 32px;
    color: var(--dark-primary);
    margin-bottom: 15px;
}

.newsletter-description {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.7);
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

/* Newsletter Form */
.newsletter-form {
    max-width: 600px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.form-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: var(--shadow-lg);
}

.form-wrapper i {
    font-size: 20px;
    color: var(--gold-dark);
    margin: 0 15px;
}

.form-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 10px;
    background: transparent;
}

.form-wrapper button {
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-base);
}

.form-wrapper button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.newsletter-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 1;
}

.newsletter-trust i {
    color: var(--dark-primary);
}

/*==============================================
  TOAST NOTIFICATION
==============================================*/
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    border-radius: 15px;
    padding: 20px 25px;
    box-shadow: var(--shadow-xl);
    border-right: 4px solid var(--gold-primary);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-icon i {
    font-size: 20px;
    color: var(--dark-primary);
}

.toast-content h5 {
    font-size: 16px;
    color: var(--dark-primary);
    margin-bottom: 5px;
}

.toast-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.toast-close {
    background: none;
    border: none;
    color: #999;
    font-size: 20px;
    cursor: pointer;
    margin-right: auto;
    padding: 0 10px;
}

/*==============================================
  RIPPLE EFFECT
==============================================*/
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/*==============================================
  RESPONSIVE DESIGN
==============================================*/
@media (max-width: 1200px) {
    .hero-title {
        font-size: 52px;
    }
    
    .section-title {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .floating-card.product-card,
    .floating-card.coin-card,
    .floating-card.certificate-card {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .gold-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .ticker-content {
        flex-direction: column;
    }
    
    .ticker-divider {
        width: 100%;
        height: 1px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    
    .trust-stats {
        flex-direction: column;
    }
    
    .trust-divider {
        width: 100%;
        height: 1px;
    }
    
    .product-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 30px;
    }
    
    .hexagon-wrapper {
        width: 160px;
        height: 180px;
    }
    
    .hexagon-wrapper::before {
        width: 160px;
        height: 160px;
    }
    
    .hexagon-content {
        width: 150px;
        height: 150px;
        padding: 20px 15px;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .newsletter-title {
        font-size: 26px;
    }
    
    .form-wrapper {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .form-wrapper input {
        width: 100%;
        padding: 12px;
    }
    
    .form-wrapper button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-description,
    .section-description {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-content h3 {
        font-size: 40px;
    }
    
    .features-grid-alt {
        grid-template-columns: 1fr;
    }
    
    .cta-calculator {
        padding: 30px 20px;
    }
    
    .newsletter-box {
        padding: 40px 25px;
    }
    
    .toast-notification {
        right: 15px;
        left: 15px;
        bottom: 15px;
    }
}

/*==============================================
  UTILITY CLASSES
==============================================*/
.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.text-left {
    text-align: left !important;
}

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Print Styles */
@media print {
    .gold-hero,
    .gold-cta,
    .gold-newsletter {
        display: none;
    }
}


