/* Gorilla Grillz - Main Stylesheet */

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --brand-blue: #68accd;
    --hover-blue: #5a9bb8;
    --white: #ffffff;
    --gray: #888888;
    --light-gray: #cccccc;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.main-header {
    background-color: var(--primary-black);
    padding: 25px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--brand-blue);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 28px;
    font-weight: 900;
    color: var(--brand-blue);
    text-decoration: none;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: all 0.3s ease;
    margin: 5px 0;
}

.logo-image:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown > a {
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.dropdown > a:hover {
    color: var(--brand-blue);
}

.dropdown > a::after {
    content: " ▼";
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown.active > a {
    color: var(--brand-blue);
}

.dropdown.active > a::after {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--secondary-black);
    min-width: 400px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    z-index: 1000;
    top: 100%;
    left: 0;
    padding: 20px;
    border: 1px solid var(--brand-blue);
    margin-top: 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown.active .dropdown-content {
    display: flex;
    gap: 40px;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-column h3 {
    color: var(--brand-blue);
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.dropdown-column a {
    display: block;
    padding: 8px 0;
    font-size: 13px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--brand-blue);
    margin: 3px 0;
    transition: 0.4s;
}

/* Hero Section */
.hero {
    margin-top: 90px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 20px;
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(26, 26, 26, 0.8)), url('../images/hero-grillz.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--white) 30%, var(--brand-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--light-gray);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--brand-blue);
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid var(--brand-blue);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--brand-blue);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    display: none; /* Hide placeholder since we're using background image */
}

/* Features Section */
.features {
    padding: 80px 20px;
    background-color: var(--secondary-black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid var(--brand-blue);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(57, 255, 20, 0.3);
}

.feature-card h3 {
    color: var(--brand-blue);
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--light-gray);
    font-size: 14px;
}

/* Products Section */
.products {
    padding: 80px 20px;
    background-color: var(--primary-black);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 50px;
    color: var(--brand-blue);
    letter-spacing: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--secondary-black);
    border: 1px solid var(--gray);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--brand-blue);
    transform: translateY(-5px);
}

.product-image {
    margin-bottom: 20px;
}

.placeholder-product {
    height: 200px;
    background-color: var(--primary-black);
    border: 2px solid var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--brand-blue);
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--white);
}

.product-card h3 a,
.product-name a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card h3 a:hover,
.product-name a:hover {
    color: var(--brand-blue);
}

.price {
    font-size: 18px;
    color: var(--brand-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.product-button {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid var(--brand-blue);
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.product-button:hover {
    background-color: var(--brand-blue);
    color: var(--primary-black);
}

/* Custom Design CTA Section */
.custom-design-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-black) 0%, var(--primary-black) 100%);
    text-align: center;
}

.custom-design-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.custom-design-cta h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--brand-blue);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(104, 172, 205, 0.3);
}

.custom-design-cta p {
    font-size: 18px;
    color: var(--light-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button.large {
    font-size: 18px;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--brand-blue), #5a9bb8);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cta-button.large:hover {
    background: linear-gradient(135deg, #7bc4e8, var(--brand-blue));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(104, 172, 205, 0.4);
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: var(--secondary-black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-black);
    border: 1px solid var(--gray);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
}

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: var(--brand-blue);
    color: var(--primary-black);
    border: none;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: var(--hover-blue);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

.contact-info h3 {
    color: var(--brand-blue);
    font-size: 24px;
    margin-bottom: 20px;
}

.info-item {
    margin-bottom: 15px;
    color: var(--light-gray);
}

.info-item strong {
    color: var(--white);
}


/* Footer */
.main-footer {
    background-color: var(--primary-black);
    padding: 50px 20px 20px;
    border-top: 1px solid var(--gray);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--brand-blue);
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--brand-blue);
}

.social-links {
    display: flex;
    gap: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray);
    color: var(--gray);
}

/* Breadcrumb */
.breadcrumb {
    background-color: var(--secondary-black);
    padding: 20px 0;
    margin-top: 90px;
    border-bottom: 1px solid var(--gray);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-nav a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--brand-blue);
}

.breadcrumb-nav span {
    color: var(--gray);
}

/* Category Page Styles */
.category-header {
    background-color: var(--primary-black);
    padding: 60px 0;
    text-align: center;
}

.category-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--brand-blue);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.category-description {
    font-size: 18px;
    color: var(--light-gray);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.category-stats {
    font-size: 16px;
    color: var(--white);
}

.product-count {
    background-color: var(--secondary-black);
    padding: 10px 20px;
    border: 1px solid var(--brand-blue);
    border-radius: 5px;
}

/* Filter Bar */
.filter-bar {
    background-color: var(--secondary-black);
    padding: 20px 0;
    border-bottom: 1px solid var(--gray);
}

.filter-controls {
    display: flex;
    gap: 40px;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
}

.filter-group select {
    padding: 8px 15px;
    background-color: var(--primary-black);
    border: 1px solid var(--gray);
    color: var(--white);
    font-size: 14px;
    border-radius: 5px;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--brand-blue);
}

/* Category Products */
.category-products {
    padding: 60px 0;
    background-color: var(--primary-black);
}

.category-products .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-products .product-card {
    position: relative;
}

.out-of-stock-badge, .featured-badge, .dust-cut-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    z-index: 2;
}

.out-of-stock-badge {
    background-color: #ff4444;
    color: white;
}

.featured-badge {
    background-color: var(--brand-blue);
    color: var(--primary-black);
}

.dust-cut-badge {
    background-color: #ff9500;
    color: var(--primary-black);
    top: 45px;
    font-size: 10px;
    padding: 3px 8px;
}

/* When both featured and dust cut badges are present */
.product-card .featured-badge + .dust-cut-badge {
    top: 45px;
}

.product-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 12px;
}

.teeth-count, .category-tag {
    background-color: var(--primary-black);
    padding: 4px 8px;
    border-radius: 3px;
    color: var(--brand-blue);
}

.tooth-options {
    margin: 15px 0;
}

.tooth-options label {
    display: block;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.tooth-selector {
    width: 100%;
    padding: 8px 12px;
    background-color: var(--primary-black);
    border: 1px solid var(--gray);
    color: var(--white);
    font-size: 12px;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.tooth-selector:focus {
    outline: none;
    border-color: var(--brand-blue);
}

.tooth-selector option {
    background-color: var(--primary-black);
    color: var(--white);
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.view-details-btn, .quick-order-btn, .notify-btn {
    flex: 1;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.view-details-btn {
    background-color: transparent;
    color: var(--brand-blue);
    border: 1px solid var(--brand-blue);
}

.view-details-btn:hover {
    background-color: var(--brand-blue);
    color: var(--primary-black);
}

.quick-order-btn {
    background-color: var(--brand-blue);
    color: var(--primary-black);
}

.quick-order-btn:hover {
    background-color: var(--hover-blue);
}

.notify-btn {
    background-color: var(--gray);
    color: var(--white);
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    color: var(--light-gray);
}

.no-products h3 {
    color: var(--white);
    margin-bottom: 20px;
}

/* Related Categories */
.related-categories {
    padding: 60px 0;
    background-color: var(--secondary-black);
}

.related-categories h2 {
    text-align: center;
    font-size: 28px;
    color: var(--brand-blue);
    margin-bottom: 40px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.category-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card a {
    text-decoration: none;
    color: inherit;
}

.category-image {
    margin-bottom: 15px;
}

.placeholder-category {
    height: 150px;
    background-color: var(--primary-black);
    border: 2px solid var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--brand-blue);
    border-radius: 5px;
}

.category-card h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.category-card p {
    color: var(--light-gray);
    font-size: 14px;
}

/* Product Detail Page */
.product-detail {
    padding: 60px 0;
    background-color: var(--primary-black);
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-images {
    position: sticky;
    top: 120px;
}

.main-image {
    position: relative;
    margin-bottom: 20px;
}

.product-placeholder-large {
    height: 400px;
    background-color: var(--secondary-black);
    border: 3px solid var(--brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-blue);
    border-radius: 10px;
}

.product-main-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border: 3px solid var(--brand-blue);
    border-radius: 10px;
    background-color: var(--secondary-black);
}

.out-of-stock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.featured-badge-large {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--brand-blue);
    color: var(--primary-black);
    padding: 8px 16px;
    font-weight: 600;
    border-radius: 5px;
}

.image-gallery {
    display: flex;
    gap: 10px;
}

.gallery-thumb {
    width: 80px;
    height: 80px;
    border: 2px solid var(--gray);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.gallery-thumb.active {
    border-color: var(--brand-blue);
}

.thumb-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--secondary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    font-weight: 600;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gallery-thumb:hover img {
    opacity: 0.8;
}

.product-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.category-badge, .teeth-badge {
    background-color: var(--secondary-black);
    color: var(--brand-blue);
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid var(--brand-blue);
}

.product-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-price-section {
    margin-bottom: 30px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 5px;
}

.price-note {
    color: var(--light-gray);
    font-size: 14px;
}

.addon-price-display {
    color: var(--brand-blue);
    font-size: 20px;
    margin-left: 10px;
}

/* Product Options Styling */
.product-options {
    margin: 20px 0;
    padding: 15px;
    background-color: var(--secondary-black);
    border-radius: 8px;
    border: 1px solid #333;
}

.teeth-selector {
    margin-bottom: 15px;
}

.teeth-selector label {
    display: block;
    color: var(--light-gray);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.teeth-count-select {
    width: 100%;
    padding: 14px 18px;
    padding-right: 45px;
    background-color: var(--primary-black);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2368accd' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    border: 2px solid #333;
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    appearance: none;
    cursor: pointer;
}

.teeth-count-select:hover {
    border-color: var(--brand-blue);
    background-color: var(--secondary-black);
}

.teeth-count-select:focus {
    border-color: var(--brand-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(104, 172, 205, 0.2);
    background-color: var(--secondary-black);
}

.teeth-count-select option {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 12px 15px;
    font-weight: 500;
}

.dust-cut-option {
    margin-top: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--light-gray);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.checkbox-label:hover {
    color: var(--white);
}

.dust-cut-checkbox {
    margin-right: 15px;
    width: 24px;
    height: 24px;
    accent-color: var(--brand-blue);
    cursor: pointer;
}

.dust-cut-price {
    color: var(--brand-blue);
    font-weight: 700;
}

/* Dust Cut Option Enhancements */
.dust-cut-option {
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid transparent;
}

.dust-cut-option:hover {
    background-color: rgba(104, 172, 205, 0.1);
    border-color: rgba(104, 172, 205, 0.3);
}

.dust-cut-option.selected {
    background-color: rgba(104, 172, 205, 0.2);
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 2px rgba(104, 172, 205, 0.1);
}

.dust-cut-option.selected .checkbox-label {
    color: var(--white);
    font-weight: 600;
}

.dust-cut-option.selected .dust-cut-price {
    color: var(--brand-blue);
    text-shadow: 0 0 5px rgba(104, 172, 205, 0.3);
}

/* Legacy Teeth Input Styling - keeping for compatibility */
.teeth-count-input {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--primary-black);
    border: 2px solid #333;
    border-radius: 6px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.teeth-count-input:focus {
    border-color: var(--brand-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(104, 172, 205, 0.1);
}

.teeth-note, .option-note {
    display: block;
    margin-top: 5px;
    color: var(--gray);
    font-size: 11px;
    font-style: italic;
}

/* Product Card Teeth Input */
.product-card .teeth-count-input {
    padding: 8px 12px;
    font-size: 13px;
}

/* Enhanced Product Card Styling */
.product-card .product-options {
    margin: 15px 0;
    padding: 12px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    border: 1px solid #222;
}

.product-card .teeth-selector {
    margin-bottom: 12px;
}

.product-card .teeth-selector label {
    font-size: 12px;
    margin-bottom: 6px;
}

.product-card .teeth-count-select {
    padding: 10px 14px;
    padding-right: 40px;
    font-size: 13px;
    border-radius: 6px;
    background-size: 14px;
    background-position: right 10px center;
}

.product-card .dust-cut-option {
    margin-top: 10px;
}

.product-card .checkbox-label {
    font-size: 12px;
}

.product-card .dust-cut-checkbox {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

/* Metal Selection in Category Page */
.metal-selector {
    margin: 15px 0;
}

.metal-selector label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metal-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.metal-option-btn {
    padding: 8px 12px;
    background-color: var(--secondary-black);
    border: 2px solid #333;
    color: var(--white);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.metal-option-btn:hover {
    border-color: var(--brand-blue);
    background-color: rgba(104, 172, 205, 0.1);
    transform: translateY(-1px);
}

.metal-option-btn.active {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
    color: var(--primary-black);
}

.metal-option-btn .metal-name {
    font-weight: 600;
}

.metal-option-btn .metal-karat {
    font-size: 10px;
    opacity: 0.8;
    font-weight: 400;
}

/* Price Display Enhancement */
.price-display {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-blue);
}

/* Product Total Price Section */
.product-total-price {
    margin: 25px 0;
    padding: 20px;
    background-color: var(--secondary-black);
    border: 2px solid var(--brand-blue);
    border-radius: 8px;
    text-align: center;
}

.total-price-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--light-gray);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.total-price-amount {
    font-size: 32px;
    font-weight: 900;
    color: var(--brand-blue);
    text-shadow: 0 0 10px rgba(104, 172, 205, 0.3);
}

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

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

.product-features h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 8px 0;
    color: var(--light-gray);
    position: relative;
    padding-left: 20px;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-blue);
    font-weight: 600;
}

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

.option-group {
    margin-bottom: 20px;
}

.option-group label {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 8px;
}

/* Notes Section Styling */
.notes-section {
    margin-bottom: 20px;
}

.notes-section textarea {
    width: 100%;
    padding: 16px;
    background-color: var(--secondary-black);
    border: 2px solid #444;
    border-radius: 8px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    min-height: 100px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.notes-section textarea::placeholder {
    color: #888;
    font-style: italic;
}

.notes-section textarea:focus {
    outline: none;
    border-color: var(--brand-blue);
    background-color: rgba(104, 172, 205, 0.05);
    box-shadow: 0 0 0 3px rgba(104, 172, 205, 0.1);
}

.character-count {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.character-count span {
    transition: color 0.3s ease;
}

/* Custom Notes in Product Page */
#custom-notes {
    width: 100%;
    padding: 16px;
    background-color: var(--secondary-black);
    border: 2px solid #444;
    border-radius: 8px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    min-height: 100px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

#custom-notes::placeholder {
    color: #888;
    font-style: italic;
}

#custom-notes:focus {
    outline: none;
    border-color: var(--brand-blue);
    background-color: rgba(104, 172, 205, 0.05);
    box-shadow: 0 0 0 3px rgba(104, 172, 205, 0.1);
}

/* Metal Type Selector on Product Page */
.metal-type-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.metal-type-btn {
    padding: 12px 20px;
    background-color: var(--secondary-black);
    border: 2px solid #444;
    color: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metal-type-btn:hover {
    border-color: var(--brand-blue);
    background-color: rgba(104, 172, 205, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(104, 172, 205, 0.3);
}

.metal-type-btn.active {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
    color: var(--primary-black);
    box-shadow: 0 4px 15px rgba(104, 172, 205, 0.5);
}

.option-group select {
    width: 100%;
    padding: 12px;
    background-color: var(--secondary-black);
    border: 1px solid var(--gray);
    color: var(--white);
    border-radius: 5px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    width: 120px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-black);
    border: 1px solid var(--gray);
    color: var(--white);
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
}

.qty-btn:hover {
    background-color: var(--brand-blue);
    color: var(--primary-black);
}

#quantity {
    width: 40px;
    height: 40px;
    text-align: center;
    background-color: var(--primary-black);
    border: 1px solid var(--gray);
    border-left: none;
    border-right: none;
    color: var(--white);
}

/* Add-on Grid */
.addon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

/* Add-on Styles - Improved Spacing */
.addon-option {
    background-color: var(--secondary-black);
    border: 2px solid var(--gray);
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
    min-height: 90px;
    width: 100%;
}

.addon-option:hover {
    border-color: var(--brand-blue);
}

.addon-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 100%;
    height: 100%;
    text-align: center;
    gap: 8px;
}

.addon-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    display: none;
}

.addon-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.addon-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-black);
    font-weight: bold;
    font-size: 16px;
}

.addon-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.addon-name {
    color: var(--white);
    font-weight: 600;
    font-size: 12px;
    line-height: 1.2;
}

.addon-description {
    display: none;
}

.addon-price {
    color: var(--brand-blue);
    font-weight: 600;
    font-size: 12px;
}

.addon-option.selected {
    border-color: var(--brand-blue);
    background-color: rgba(104, 172, 205, 0.2);
}

.addon-option.selected .checkmark {
    display: none;
}

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

.primary-btn, .secondary-btn, .icon-btn {
    display: block;
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.primary-btn {
    background-color: var(--brand-blue);
    color: var(--primary-black);
}

.primary-btn:hover {
    background-color: var(--hover-blue);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

.secondary-btn {
    background-color: transparent;
    color: var(--brand-blue);
    border: 2px solid var(--brand-blue);
}

.secondary-btn:hover {
    background-color: var(--brand-blue);
    color: var(--primary-black);
}

.icon-btn {
    background-color: var(--secondary-black);
    color: var(--light-gray);
    border: 1px solid var(--gray);
}

.icon-btn:hover {
    color: var(--brand-blue);
    border-color: var(--brand-blue);
}

.product-guarantees {
    border-top: 1px solid var(--gray);
    padding-top: 30px;
}

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

.guarantee-item:last-child {
    border-bottom: none;
}

.guarantee-item strong {
    color: var(--brand-blue);
}

.guarantee-item span {
    color: var(--light-gray);
    font-size: 14px;
}

/* Product Tabs */
.product-tabs {
    background-color: var(--secondary-black);
    padding: 60px 0;
}

.tabs-header {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--gray);
}

.tab-btn {
    padding: 15px 30px;
    background-color: transparent;
    border: none;
    color: var(--light-gray);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn.active, .tab-btn:hover {
    color: var(--brand-blue);
    border-bottom-color: var(--brand-blue);
}

.tab-panel {
    display: none;
    color: var(--light-gray);
    line-height: 1.6;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3, .tab-panel h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

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

.specs-table td:first-child {
    font-weight: 600;
    color: var(--white);
    width: 200px;
}

.care-instructions h4 {
    color: var(--brand-blue);
    margin-top: 30px;
    margin-bottom: 15px;
}

.care-instructions ul {
    margin-bottom: 20px;
}

.reviews-summary {
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--primary-black);
    border-radius: 10px;
}

.rating-overview {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rating-stars {
    color: var(--brand-blue);
    font-size: 24px;
}

.rating-text {
    color: var(--white);
    font-weight: 600;
}

.review-item {
    padding: 20px;
    border-bottom: 1px solid var(--gray);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-name {
    color: var(--white);
    font-weight: 600;
}

.review-rating {
    color: var(--brand-blue);
}

.review-date {
    color: var(--gray);
    font-size: 14px;
}

.review-text {
    color: var(--light-gray);
}

/* Related Products */
.related-products {
    padding: 60px 0;
    background-color: var(--primary-black);
}

.related-products h2 {
    text-align: center;
    font-size: 28px;
    color: var(--brand-blue);
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .products-grid,
    .category-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-image {
        margin-top: 40px;
    }

    .placeholder-image {
        width: 300px;
        height: 300px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .products-grid,
    .category-products .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dropdown-content {
        position: static;
        width: 100%;
        margin-top: 0;
        border: none;
        box-shadow: none;
        background-color: var(--primary-black);
        padding: 15px 20px;
    }
    
    .dropdown-content .dropdown-column {
        margin-bottom: 20px;
    }
    
    .dropdown-content .dropdown-column:last-child {
        margin-bottom: 0;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .filter-controls {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .filter-group {
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
    }
    
    .product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-images {
        position: static;
    }
    
    .product-placeholder-large {
        height: 300px;
    }
    
    .tabs-header {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1;
        min-width: 120px;
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .guarantee-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--primary-black);
}

.faq h2 {
    text-align: center;
    font-size: 48px;
    color: var(--brand-blue);
    margin-bottom: 60px;
    font-weight: 900;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--brand-blue);
}

.faq-question h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-question:hover h3 {
    color: var(--brand-blue);
}

.faq-toggle {
    font-size: 24px;
    color: var(--brand-blue);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--light-gray);
    line-height: 1.6;
    margin: 0;
}

/* Buy Now Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background-color: var(--secondary-black);
    border: 2px solid var(--brand-blue);
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--brand-blue);
}

.popup-header h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.popup-close {
    background: none;
    border: none;
    color: var(--light-gray);
    font-size: 32px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: var(--brand-blue);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--primary-black);
    border: 2px solid var(--gray);
    border-radius: 8px;
    color: var(--white);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--brand-blue);
}

.form-group input::placeholder {
    color: var(--gray);
}

.order-summary {
    background-color: var(--primary-black);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
}

.order-summary h4 {
    color: var(--brand-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    color: var(--white);
}

.summary-item.total-item {
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px solid var(--gray);
    font-weight: 700;
    font-size: 18px;
}

.addons-summary {
    margin: 15px 0;
    padding: 10px 0;
}

.summary-section-title {
    color: var(--brand-blue);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.addon-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    color: var(--light-gray);
    font-size: 14px;
}

.addon-summary-item:last-child {
    margin-bottom: 0;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.cancel-btn, .submit-btn {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn {
    background-color: transparent;
    color: var(--light-gray);
    border: 2px solid var(--gray);
}

.cancel-btn:hover {
    background-color: var(--gray);
    color: var(--white);
}

.submit-btn {
    background-color: var(--brand-blue);
    color: var(--white);
}

.submit-btn:hover {
    background-color: var(--hover-blue);
}

/* Buy Now Popup */
.buy-now-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.buy-now-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--secondary-black);
    border: 2px solid var(--brand-blue);
    border-radius: 15px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.buy-now-popup.active .popup-content {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    color: var(--light-gray);
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1;
}

.popup-close:hover {
    color: var(--brand-blue);
}

.popup-content h3 {
    color: var(--brand-blue);
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 700;
    padding-right: 40px;
}

/* Responsive Popup */
@media (max-width: 768px) {
    .popup-content {
        padding: 20px;
        margin: 20px;
    }
    
    .popup-content h3 {
        font-size: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .cancel-btn, .submit-btn {
        width: 100%;
    }
}

/* Success Notification */
.success-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 20000;
    text-align: center;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-notification.show {
    opacity: 1;
    visibility: visible;
    animation: successPulse 2s ease-in-out;
}

.success-notification h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 700;
}

.success-notification p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.success-checkmark {
    font-size: 30px;
    margin-bottom: 10px;
    display: block;
}

@keyframes successPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    10% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 1;
    }
    20% {
        transform: translate(-50%, -50%) scale(1);
    }
    90% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0;
    }
}

/* FAQ Page Styles */
.faq-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h2 {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question h3 {
    color: var(--white);
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    color: var(--gold);
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
    opacity: 1;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.faq-answer ul {
    color: var(--text-light);
    margin-left: 20px;
    margin-bottom: 15px;
}

.faq-answer li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.faq-answer strong {
    color: var(--gold);
}

.faq-contact {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.faq-contact h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.faq-contact p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 10px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }
    
    .faq-contact {
        padding: 30px 20px;
        margin-top: 40px;
    }
}

/* Returns Page Styles */
.returns-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.returns-content {
    max-width: 800px;
    margin: 0 auto;
}

.returns-info h2 {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 40px;
}

.returns-info h2:first-of-type {
    margin-top: 0;
}

.address-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.address-box h3 {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 15px;
}

.address-box p {
    color: var(--white);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.returns-policy h3 {
    color: var(--white);
    font-size: 18px;
    margin: 25px 0 15px 0;
}

.returns-policy ul,
.returns-policy ol {
    color: var(--text-light);
    margin-left: 20px;
    margin-bottom: 20px;
}

.returns-policy li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.returns-policy p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-returns {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.contact-returns h2 {
    color: var(--white);
    margin-bottom: 15px;
    margin-top: 0;
}

.contact-returns p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-details {
    margin: 20px 0;
}

.contact-details p {
    color: var(--white);
    margin-bottom: 10px;
}

.contact-details strong {
    color: var(--gold);
}

/* Responsive Returns */
@media (max-width: 768px) {
    .returns-section {
        padding: 60px 0;
    }
    
    .address-box,
    .contact-returns {
        padding: 20px;
    }
    
    .returns-info h2 {
        font-size: 20px;
    }
}
