/* Reset & Variables */
:root {
    --navy: #002349;
    --gold: #c5a069;
    --gold-light: #d4b483;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--white);
    color: var(--navy);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.top-bar {
    background: var(--navy);
    color: var(--white);
    font-size: 0.75rem;
    padding: 0.5rem 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 1.25rem;
}

.top-bar-text {
    font-weight: 700;
    letter-spacing: 0.05em;
}

.top-bar-marquee {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    margin: 0 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.top-bar-update {
    font-weight: 900;
    color: var(--gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.main-header {
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.search-form {
    flex: 1;
    max-width: 20rem;
    position: relative;
}

.search-form input {
    width: 100%;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 1rem;
    padding: 0.75rem 1rem 0.75rem 3rem;
    font-weight: 500;
    outline: none;
    transition: all 0.3s;
}

.search-form input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 105, 0.1);
}

.search-form button {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    transition: color 0.3s;
}

.search-form:hover button {
    color: var(--gold);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: -0.05em;
    text-transform: uppercase;
    line-height: 1;
}

.logo-subtitle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.logo-subtitle .line {
    height: 1.5px;
    width: 1.5rem;
    background: rgba(197, 160, 105, 0.5);
}

.logo-subtitle span {
    font-size: 0.625rem;
    color: var(--gold);
    letter-spacing: 0.5em;
    text-transform: uppercase;
    font-weight: 900;
}

.header-contact {
    flex: 1;
    max-width: 20rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.25rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-label {
    font-size: 0.625rem;
    font-weight: 900;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.contact-phone {
    font-size: 1rem;
    font-weight: 900;
    color: var(--navy);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: rgba(197, 160, 105, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    box-shadow: 0 4px 6px rgba(197, 160, 105, 0.05);
}

.mobile-menu-btn,
.mobile-phone-btn {
    display: none;
}

.navbar {
    border-top: 1px solid var(--gray-50);
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 0.75rem 0;
    list-style: none;
}

.nav-menu a {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.price-link {
    color: var(--gold) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s;
    z-index: 2000;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu-header span {
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--navy);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--navy);
    cursor: pointer;
    line-height: 1;
}

.mobile-nav-menu {
    list-style: none;
    padding: 1rem 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid var(--gray-50);
}

.mobile-nav-menu a {
    display: block;
    padding: 1rem 1.5rem;
    font-weight: 700;
    color: var(--navy);
    transition: all 0.3s;
}

.mobile-nav-menu a:hover {
    background: var(--gray-50);
    color: var(--gold);
    padding-left: 2rem;
}

/* Hero Section */
.hero-section {
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    height: auto;
}

.hero-banner {
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
    background: var(--navy);
    min-height: 400px;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.banner-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--navy), rgba(0, 35, 73, 0.4), transparent);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem;
}

.banner-badge {
    background: rgba(197, 160, 105, 0.2);
    backdrop-filter: blur(20px);
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(197, 160, 105, 0.3);
    display: inline-block;
    width: fit-content;
    margin-bottom: 1rem;
}

.banner-badge span {
    color: var(--gold);
    font-size: 0.625rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.banner-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
}

.banner-title {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    max-width: 36rem;
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 900;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 10px 40px rgba(197, 160, 105, 0.4);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: scale(0.98);
}

.banner-controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.75rem;
}

.banner-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.banner-btn:hover {
    background: var(--gold);
}

.banner-indicators {
    position: absolute;
    bottom: 2rem;
    left: 2.5rem;
    display: flex;
    gap: 0.5rem;
}

.banner-indicators button {
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.banner-indicators button.active {
    width: 2rem;
    background: var(--gold);
}

.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-card {
    flex: 1;
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
    min-height: 150px;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s;
}

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

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 35, 73, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: background 0.3s;
}

.video-card:hover .card-overlay {
    background: rgba(0, 35, 73, 0.6);
}

.card-label {
    color: var(--gold);
    font-weight: 900;
    font-size: 0.625rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.card-title {
    color: var(--white);
    font-weight: 900;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.play-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.play-btn:hover {
    transform: scale(1.1);
}

.info-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.info-line {
    width: 2rem;
    height: 0.25rem;
    background: var(--gold);
    margin-bottom: 1rem;
    border-radius: 9999px;
    transition: width 0.7s;
}

.info-card:hover .info-line {
    width: 4rem;
}

.info-title {
    color: var(--navy);
    font-weight: 900;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.info-text {
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.6;
    font-weight: 500;
}

.info-link {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gold);
    font-weight: 900;
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: gap 0.3s;
}

.info-link:hover {
    gap: 1.25rem;
}

/* Products Section */
.products-section {
    padding: 3rem 0;
    position: relative;
    z-index: 2;
    background: var(--white);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.section-line {
    height: 3.5rem;
    width: 0.375rem;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light));
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(197, 160, 105, 0.2);
}

.section-label {
    font-size: 0.625rem;
    font-weight: 900;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 0.25rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.section-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gray-50);
    padding: 0.75rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-100);
}

.section-badge span {
    font-size: 0.625rem;
    font-weight: 900;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-secondary {
    font-size: 0.625rem;
    font-weight: 900;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--gray-50);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: rgba(197, 160, 105, 0.3);
    gap: 1.25rem;
}

.btn-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: background 0.3s;
}

.btn-secondary:hover .btn-icon {
    background: var(--gold);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: 2rem;
    border: 1px solid var(--gray-100);
    padding: 1.5rem;
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem;
    align-items: center;
    text-align: center;
    transition: all 0.7s;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 6rem;
    height: 6rem;
    background: rgba(197, 160, 105, 0.05);
    border-radius: 50%;
    filter: blur(2rem);
    transition: all 0.7s;
}

.product-card:hover {
    border-color: rgba(197, 160, 105, 0.3);
    box-shadow: 0 20px 60px rgba(197, 160, 105, 0.1);
    transform: translateY(-5px);
}

.product-card:hover::before {
    background: rgba(197, 160, 105, 0.1);
}

.product-image {
    position: relative;
    width: 180px !important;
    max-width: 180px !important;
    min-width: 180px !important;
    height: 180px;
    overflow: hidden;
    border-radius: 1.5rem;
    background: rgba(243, 244, 246, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.5s;
}

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

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
    width: 100%;
}

.product-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.625rem;
    font-weight: 900;
    padding: 0.375rem 0.75rem;
    border-radius: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.badge-weight {
    background: var(--gray-100);
    color: var(--gray-400);
}

.badge-purity {
    background: rgba(197, 160, 105, 0.1);
    color: var(--gold);
}

.product-name {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
    text-align: center;
    width: 100%;
}

.product-name:hover {
    color: var(--gold);
}

.product-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    position: relative;
    z-index: 10;
}

.product-price {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.05em;
}

.price-currency {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
}

.product-contact {
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 1rem;
    width: 100%;
}

.product-contact span {
    font-size: 0.625rem;
    font-weight: 900;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.btn-product {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    font-weight: 900;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    transition: all 0.3s;
}

.btn-product:hover {
    background: var(--gold);
    box-shadow: 0 10px 40px rgba(197, 160, 105, 0.3);
    transform: scale(1.02);
}

.btn-product:active {
    transform: scale(0.98);
}

/* Mobile Product Card */
@media (max-width: 768px) {
    .product-card {
        flex-direction: column !important;
        padding: 1.25rem;
    }
    
    .product-image {
        width: 160px !important;
        min-width: 160px !important;
        max-width: 160px !important;
        height: 160px !important;
        margin: 0 auto 1rem;
    }
    
    .product-info {
        text-align: center;
        align-items: center;
        width: 100%;
    }
    
    .product-badges {
        justify-content: center;
    }
    
    .product-name {
        font-size: 1rem;
        text-align: center;
    }
    
    .product-footer {
        width: 100%;
        min-width: auto;
        align-items: center;
    }
    
    .product-price {
        align-items: center;
        justify-content: center;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
}

/* Why Us Section */
.why-us-section {
    padding: 8rem 0;
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

.why-us-section::before,
.why-us-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(197, 160, 105, 0.1);
    border-radius: 50%;
    filter: blur(150px);
}

.why-us-section::before {
    top: -300px;
    right: -300px;
}

.why-us-section::after {
    bottom: -300px;
    left: -300px;
}

.why-us-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 10;
}

.why-us-header .section-label {
    color: var(--gold);
}

.why-us-header .section-title {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.section-desc {
    color: var(--gray-400);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.5s;
}

.feature-card:hover {
    transform: translateY(-1rem);
}

.feature-icon {
    width: 7rem;
    height: 7rem;
    border-radius: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 2.5rem;
    transition: all 0.5s;
}

.feature-card:hover .feature-icon {
    background: rgba(197, 160, 105, 0.2);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--gray-400);
    line-height: 1.6;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 5rem 0 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: -0.05em;
    text-transform: uppercase;
    line-height: 1;
}

.footer-logo span {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 900;
    letter-spacing: 0.5em;
    text-transform: uppercase;
}

.footer-desc {
    color: var(--gray-300);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--white);
}

.footer-col h3 {
    color: var(--gold);
    font-weight: 900;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

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

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: var(--gray-300);
    font-size: 0.875rem;
    font-weight: 700;
    transition: color 0.3s;
}

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

.contact-list li {
    margin-bottom: 1.5rem;
}

.contact-list a {
    display: flex;
    gap: 1rem;
    transition: all 0.3s;
}

.contact-list .contact-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(197, 160, 105, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s;
}

.contact-list a:hover .contact-icon {
    background: var(--gold);
    color: var(--white);
}

.contact-list .contact-icon.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.contact-list a:hover .contact-icon.whatsapp {
    background: #25D366;
    color: var(--white);
}

.contact-list .contact-label {
    font-size: 0.625rem;
    font-weight: 900;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
    display: block;
}

.contact-list .contact-value {
    font-size: 0.875rem;
    font-weight: 900;
    color: var(--white);
    transition: color 0.3s;
}

.contact-list a:hover .contact-value {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-bottom p {
    font-size: 0.625rem;
    font-weight: 900;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.footer-badge span {
    font-size: 0.625rem;
    font-weight: 900;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .desktop {
        display: none !important;
    }
    
    .mobile {
        display: flex !important;
    }
    
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        gap: 0.375rem;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }
    
    .mobile-menu-btn span {
        width: 1.5rem;
        height: 2px;
        background: var(--navy);
        transition: all 0.3s;
    }
    
    .mobile-phone-btn {
        display: flex !important;
        width: 2.5rem;
        height: 2.5rem;
        background: var(--navy);
        color: var(--white);
        border-radius: 0.75rem;
        align-items: center;
        justify-content: center;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .banner-title {
        font-size: 1.875rem;
    }
    
    .why-us-header .section-title {
        font-size: 2rem;
    }
    
    /* Top bar mobile */
    .top-bar-marquee {
        display: block !important;
    }
    
    .top-bar-text {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .desktop {
        display: flex !important;
    }
    
    .mobile {
        display: none !important;
    }
    
    /* Top bar desktop */
    .top-bar-text {
        display: block !important;
    }
    
    .top-bar-marquee {
        display: none !important;
    }
    
    .mobile-menu-btn,
    .mobile-phone-btn {
        display: none !important;
    }
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 2fr 1fr;
        height: 500px;
    }
    
    .hero-banner {
        min-height: auto;
        height: 100%;
    }
    
    .hero-card {
        height: calc(50% - 0.75rem);
        min-height: auto;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.hidden {
    display: none;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn {
        display: none;
    }
}

/* Search & Filter Styles */
.filter-bar {
    background: linear-gradient(135deg, var(--white), var(--gray-50));
    border: 2px solid var(--gray-200);
    border-radius: 2rem;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.filter-form {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr auto;
    gap: 1.25rem;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-input,
.filter-select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--gray-200);
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    background: var(--white);
    transition: all 0.3s;
    font-family: inherit;
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(197, 160, 105, 0.1);
    transform: translateY(-2px);
}

.filter-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23002349' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3rem;
}

.filter-actions {
    display: flex;
    gap: 0.75rem;
}

.filter-actions .btn {
    white-space: nowrap;
}

.results-info {
    margin-bottom: 2rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, rgba(197, 160, 105, 0.1), rgba(0, 35, 73, 0.05));
    border-radius: 1rem;
    border-left: 4px solid var(--gold);
}

.results-info p {
    font-weight: 900;
    color: var(--navy);
    margin: 0;
    font-size: 1.125rem;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    text-align: center;
}

.empty-state svg {
    color: var(--gray-300);
    margin-bottom: 2rem;
}

.empty-state p {
    font-size: 1.25rem;
    color: var(--gray-500);
    font-weight: 700;
    margin-bottom: 2rem;
    max-width: 32rem;
}

/* Responsive Filter */
@media (max-width: 1024px) {
    .filter-bar {
        padding: 1.5rem;
    }
    
    .filter-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filter-actions {
        flex-direction: column;
    }
    
    .filter-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Prices Page Mobile Responsive */
@media (max-width: 768px) {
    .prices-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .prices-section .section-badge {
        align-self: flex-start;
    }
    
    /* Section header mobile */
    .section-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1.5rem;
    }
    
    .section-title-wrapper {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }
    
    .section-line {
        height: 0.375rem;
        width: 3rem;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .section-badge {
        width: 100%;
        justify-content: center;
    }
    
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Additional mobile fixes */
@media (max-width: 640px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .products-section {
        padding: 2rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .products-grid {
        gap: 1.5rem;
    }
    
    /* Hero section mobile */
    .hero-section {
        padding: 1rem 0;
    }
    
    .hero-grid {
        gap: 1rem;
    }
    
    .hero-banner {
        min-height: 300px;
        border-radius: 1.5rem;
    }
    
    .banner-content {
        padding: 1.5rem;
    }
    
    .banner-title {
        font-size: 1.5rem;
    }
    
    .banner-controls,
    .banner-indicators {
        display: none;
    }
    
    /* Why us section mobile */
    .why-us-section {
        padding: 4rem 0;
    }
    
    .why-us-header {
        margin-bottom: 3rem;
    }
    
    .why-us-header .section-title {
        font-size: 1.5rem !important;
    }
    
    .section-desc {
        font-size: 1rem;
    }
    
    .features-grid {
        gap: 2.5rem;
    }
    
    .feature-icon {
        width: 5rem;
        height: 5rem;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.125rem;
    }
    
    /* Footer mobile */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-grid {
        gap: 2rem;
        margin-bottom: 2.5rem;
    }
}



/* Gold Rates Grid - Prices Page */
.gold-rates-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.gold-rate-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 1.5rem;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
}

.gold-rate-card:hover {
    border-color: rgba(197, 160, 105, 0.3);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.gold-rate-info {
    flex-shrink: 0;
    min-width: 0;
}

.gold-rate-name {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.last-update-time {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 700;
}

.price-values {
    text-align: right;
    flex-shrink: 0;
}

.price-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 0.5rem;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-label {
    display: block;
    font-size: 0.625rem;
    color: var(--gray-400);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 900;
}

.price-amount.bid {
    color: var(--navy);
}

.price-amount.ask {
    color: var(--gold);
}

.price-change {
    font-size: 0.875rem;
    font-weight: 700;
}

.price-change.positive {
    color: #10b981;
}

.price-change.negative {
    color: #ef4444;
}

/* Gold Rate Cards Mobile */
@media (max-width: 768px) {
    .gold-rates-grid {
        gap: 1rem;
    }
    
    .gold-rate-card {
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .gold-rate-info {
        width: 100%;
    }
    
    .gold-rate-name {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .last-update-time {
        font-size: 0.625rem;
    }
    
    .price-values {
        width: 100%;
        text-align: left;
    }
    
    .price-row {
        gap: 1rem;
        justify-content: space-between;
    }
    
    .price-box {
        flex: 1;
        min-width: 0;
    }
    
    .price-label {
        font-size: 0.5rem;
    }
    
    .price-amount {
        font-size: 1.125rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .price-change {
        display: block;
        margin-top: 0.5rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 400px) {
    .gold-rate-card {
        padding: 1rem;
    }
    
    .price-row {
        gap: 0.75rem;
    }
    
    .price-amount {
        font-size: 1rem;
    }
}

/* Category Card Styles */
.category-card {
    background: var(--white);
    border-radius: 2rem;
    border: 1px solid var(--gray-100);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    transition: all 0.7s;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 6rem;
    height: 6rem;
    background: rgba(197, 160, 105, 0.05);
    border-radius: 50%;
    filter: blur(2rem);
    transition: all 0.7s;
}

.category-card:hover {
    border-color: rgba(197, 160, 105, 0.3);
    box-shadow: 0 20px 60px rgba(197, 160, 105, 0.1);
    transform: translateY(-5px);
}

.category-card:hover::before {
    background: rgba(197, 160, 105, 0.1);
}

.category-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 1.5rem;
    background: rgba(243, 244, 246, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 1s;
}

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

.category-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.category-name {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: color 0.3s;
}

.category-card:hover .category-name {
    color: var(--gold);
}

.category-footer {
    width: 100%;
    position: relative;
    z-index: 10;
}

/* Mobile Category Card */
@media (max-width: 768px) {
    .category-card {
        padding: 1.25rem;
    }
    
    .category-name {
        font-size: 1.125rem;
    }
}

/* Product Detail Page */
.product-detail-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
}

.product-detail-image {
    background: var(--gray-50);
    border-radius: 2rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 100px;
}

.product-detail-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-detail-image {
        position: relative;
        top: 0;
    }
}
