/* styles.css - Complete styles (same as original) */

:root {
    --gold: #e9ec25;
    --gold-dark: #ffef0d;
    --gold-light: #ffffff;
    --bg-dark: #0f0f0f;
    --bg-darker: #1a1a1a;
    --bg-darker-2: #2d2d2d;
    --text-light: #e0e0e0;
    --text-muted: #999999;
    --accent-gold: #f4d03f;
    --success: #27ae60;
    --danger: #e74c3c;
    --info: #3498db;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    letter-spacing: 0.5px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

.gold-text {
    color: var(--gold);
    font-weight: 700;
}

.white-text {
    color: #ffffff;
}

.brand-gold {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 900;
}

.brand-sub {
    color: var(--text-light);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.btn {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #1a1a1a;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 165, 116, 0.5);
    color: #1a1a1a;
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #1a1a1a;
}

.btn-auth {
    border: 1px solid var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.btn-auth:hover {
    background: var(--gold);
    color: #1a1a1a;
}

.form-control {
    background-color: var(--bg-darker-2);
    border: 1px solid var(--gold);
    color: var(--text-light);
    padding: 0.75rem 1rem;
    border-radius: 4px;
}

.form-control:focus {
    background-color: var(--bg-darker-2);
    border-color: var(--gold);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    color: var(--text-light);
    font-weight: 600;
}

.navbar {
    background: rgba(18, 18, 24, 0.92) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-link {
    color: #f5f5f5 !important;
    transition: all 0.25s ease-in-out;
    position: relative;
    font-weight: 500;
    margin: 0 0.25rem;
    padding: 0.5rem 1rem !important;
    border-radius: 40px;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f3e3a0);
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 70%;
    left: 15%;
}

.nav-link:hover {
    color: #d4af37 !important;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.nav-link.active {
    color: #d4af37 !important;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 40px;
}

.cart-count {
    background: linear-gradient(135deg, #d4af37, #b8902a);
    color: #0a0a0a;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.55rem;
    border-radius: 30px;
    margin-left: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    line-height: 1;
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.05);
    animation: slowZoom 25s infinite alternate ease-in-out;
}

@keyframes slowZoom {
    0% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1.12);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 40%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 90%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    max-width: 720px;
    margin: 0 auto 2rem auto;
    font-weight: 400;
    animation: fadeUp 0.8s ease 0.15s backwards;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    animation: fadeUp 0.8s ease 0.3s backwards;
}

.features-section {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-darker-2) 100%);
}

.feature-card {
    background: rgba(212, 165, 116, 0.05);
    padding: 2rem;
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.categories-section {
    background: var(--bg-dark);
    padding: 5rem 0;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.9), transparent);
    color: var(--gold);
    padding: 1.5rem 1rem 1rem;
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.category-card:hover img {
    transform: scale(1.1);
}

.products-section {
    background: var(--bg-dark);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.sort-controls {
    min-width: 200px;
}

.sort-controls select {
    background-color: var(--bg-darker-2);
    border: 1px solid var(--gold);
    color: var(--text-light);
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.category-filter,
.price-filter {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-check-input {
    border: 1px solid var(--gold);
    background-color: var(--bg-darker-2);
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

.form-check-label {
    cursor: pointer;
    color: var(--text-light);
    margin-left: 0.5rem;
}

.form-range {
    height: 6px;
    accent-color: var(--gold);
}

.product-card {
    background: linear-gradient(135deg, var(--bg-darker-2) 0%, var(--bg-darker) 100%);
    border: 1px solid rgba(212, 165, 116, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(212, 165, 116, 0.2);
    transform: translateY(-8px);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    position: relative;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-rating i {
    color: var(--gold);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.product-price {
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 700;
}

.product-card-btn {
    background: var(--gold);
    color: #1a1a1a;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.product-card-btn:hover {
    background: var(--gold-light);
    transform: scale(1.05);
}

.cart-section {
    background: var(--bg-dark);
    min-height: 100vh;
}

.cart-item {
    background: linear-gradient(135deg, var(--bg-darker-2) 0%, var(--bg-darker) 100%);
    border: 1px solid rgba(212, 165, 116, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.cart-item:hover {
    border-color: var(--gold);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--gold);
    border-radius: 4px;
    overflow: hidden;
}

.quantity-control button {
    background: var(--gold);
    color: #1a1a1a;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-control button:hover {
    background: var(--gold-light);
}

.quantity-control input {
    background: var(--bg-darker-2);
    border: none;
    color: var(--text-light);
    width: 50px;
    text-align: center;
    font-weight: 600;
}

.remove-btn {
    background: var(--danger);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: #c0392b;
}

.order-summary {
    background: linear-gradient(135deg, var(--bg-darker-2) 0%, var(--bg-darker) 100%);
    border: 1px solid rgba(212, 165, 116, 0.2);
    padding: 2rem;
    border-radius: 8px;
    position: sticky;
    top: 100px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.summary-row.total {
    font-size: 1.3rem;
    font-weight: 700;
}

.bg-dark-custom {
    background: var(--bg-darker-2);
}

.footer-section {
    background: var(--bg-darker-2);
    border-top: 2px solid var(--gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    margin-left: 5px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--gold);
}

.modal-content {
    border: 1px solid var(--gold) !important;
}

.border-gold {
    border-color: var(--gold) !important;
}

.nav-tabs .nav-link {
    color: var(--text-muted);
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    padding: 0.5rem 1rem;
}

.nav-tabs .nav-link.active {
    border-color: var(--gold);
    color: var(--gold);
    background: transparent;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 165, 116, 0.1);
    border: 2px solid var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-form {
    background: linear-gradient(135deg, var(--bg-darker-2) 0%, var(--bg-darker) 100%);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: #1a1a1a;
}

.value-card {
    background: linear-gradient(135deg, var(--bg-darker-2) 0%, var(--bg-darker) 100%);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.newsletter-section {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #1a1a1a;
}

.newsletter-section h3 {
    color: #1a1a1a;
}

.newsletter-section p {
    color: #2d2d2d;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px 0 0 4px;
    background: white;
    color: #1a1a1a;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    border-radius: 0 4px 4px 0;
    background: #1a1a1a;
    color: var(--gold);
    border: none;
    cursor: pointer;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .sticky-sidebar {
        position: relative;
        top: 0;
    }
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .order-summary {
        position: relative;
        top: 0;
    }
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form input,
    .newsletter-form button {
        border-radius: 4px;
    }
}

.alert-gold {
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid var(--gold);
    color: var(--text-light);
}

.rounded-lg {
    border-radius: 8px;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}