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

:root {
    --primary-gold: #c9b037;
    --secondary-gold: #d4af37;
    --dark-gold: #b39a2f;
    --beige-light: #f5f3ed;
    --beige: #e8e4d9;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --text-gray: #666666;
    --border-color: #d4d0c8;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--beige-light);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

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


.navbar {
    background-color: #201d1d;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-contact {
    display: flex;
    gap: 30px;
    font-size: 14px;
    color: var(--text-gray);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    padding: 20px 0;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

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


.hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23d4c4a8" width="1200" height="800"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-gold);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 176, 55, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-gold);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--dark-gold);
    transform: translateY(-2px);
}


.products-section {
    padding: 80px 0;
}

.products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.product-info {
    padding: 25px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.8rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.product-colors-available {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}


.product-details {
    padding: 60px 0;
}

.back-link {
    display: inline-block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 16px;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--primary-gold);
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.size-display-above-image {
    background-color: var(--beige-light);
    padding: 15px 20px;
    border-radius: 10px 10px 0 0;
    margin-bottom: -10px;
    border: 2px solid var(--border-color);
    border-bottom: none;
    text-align: center;
}

.size-display-above-image p {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

.product-gallery .main-image {
    width: 100%;
    height: 500px;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
    border-top: none;
}

.product-gallery .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-images {
    display: flex;
    gap: 15px;
}

.thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-gold);
}

.product-info-detail h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.product-price-detail {
    font-size: 2.5rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 25px;
}

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

.product-description h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-option {
    margin-bottom: 30px;
}

.product-option label {
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.color-options {
    display: flex;
    gap: 20px;
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s;
}

.color-option:hover,
.color-option.active {
    border-color: var(--primary-gold);
    background-color: var(--beige-light);
}

.color-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    overflow: hidden;
}

.color-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.color-option span {
    font-size: 14px;
    color: var(--text-gray);
}

.size-options {
    display: flex;
    gap: 15px;
}

.size-btn {
    width: 60px;
    height: 60px;
    border: 2px solid var(--border-color);
    background-color: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.size-btn:hover,
.size-btn.active {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--text-dark);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-color);
    background-color: var(--white);
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.qty-btn:hover {
    background-color: var(--beige);
}

#quantity {
    width: 80px;
    height: 40px;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
}

.btn-add-to-cart {
    width: 100%;
    padding: 18px;
    background-color: var(--primary-gold);
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 30px;
}

.btn-add-to-cart:hover {
    background-color: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 176, 55, 0.4);
}

.product-features ul {
    list-style: none;
    padding: 20px;
    background-color: var(--beige-light);
    border-radius: 5px;
}

.product-features li {
    padding: 8px 0;
    color: var(--text-gray);
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.size-table thead {
    background-color: var(--beige);
}

.size-table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.size-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-gray);
}

.size-table tbody tr:last-child td {
    border-bottom: none;
}

.size-table tbody tr:hover {
    background-color: var(--beige-light);
}

.size-table tbody tr.highlighted {
    background-color: rgba(201, 176, 55, 0.15);
    font-weight: 600;
}

.cart-notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background-color: #4caf50;
    color: white;
    padding: 20px 30px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transform: translateX(400px);
    transition: transform 0.3s;
    z-index: 2000;
}

.cart-notification.show {
    transform: translateX(0);
}

.contact-section {
    padding: 60px 0;
}

.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
    color: var(--primary-gold);
}

.contact-intro {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 40px;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.file-input-wrapper {
    position: relative;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-label {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    background-color: var(--beige-light);
    transition: all 0.3s;
}

.file-label:hover {
    background-color: var(--beige);
}

#fileName {
    color: var(--text-gray);
}

.btn-submit {
    padding: 15px;
    background-color: var(--primary-gold);
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 176, 55, 0.4);
}

.form-success {
    display: none;
    background-color: #4caf50;
    color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
}

.form-success.show {
    display: block;
}

footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
    margin-top: 60px;
}



.product-color-preview {
    display: inline-block;
    width: 100%;
    height: 100%;
}

@media (max-width: 968px) {
    .product-layout {
        grid-template-columns: 1fr;
    }

    .nav-contact {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 20px;
    }

    .contact-wrapper {
        padding: 30px 20px;
    }

    .color-options,
    .size-options {
        flex-wrap: wrap;
    }
}

