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

:root {
    --gold: #d4af37;
    --silver: #c0c0c0;
    --dark-gold: #b8941f;
    --light-gold: #f4e8c1;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #fafafa;
    --white: #ffffff;
    --border-light: #e8e8e8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    letter-spacing: 0.01em;
}

/* Typography Improvements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    line-height: 1.85;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
}

/* Global link styles - no underline, gold color */
a {
    text-decoration: none !important;
    color: var(--gold);
    transition: all 0.3s ease;
}

a:link,
a:visited,
a:active {
    text-decoration: none !important;
}

a:hover {
    color: var(--dark-gold);
    text-decoration: none !important;
}

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

/* Header Styles */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.logo:hover {
    color: var(--dark-gold);
    transform: scale(1.05);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
    font-weight: 500;
}

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

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.burger-menu span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
    z-index: 999;
    display: block;
}

.mobile-nav.active {
    max-height: 600px;
    opacity: 1;
    display: block;
}

.mobile-nav ul {
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 0;
    list-style: none;
}

.mobile-nav ul li {
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav ul li:last-child {
    border-bottom: none;
}

.mobile-nav ul li a {
    display: block;
    padding: 1rem 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
    color: var(--gold);
    padding-left: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--white) 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    color: var(--dark-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Products Section */
.products-section {
    padding: 3rem 0;
}

/* Products Grid - Updated for better layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.product-card.large {
    grid-column: span 2;
    flex-direction: row;
}

.product-card.large img {
    width: 50%;
    height: auto;
    object-fit: cover;
    min-height: 300px;
}

.product-card.large .product-card-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.product-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card h3 {
    color: var(--dark-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.product-card p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-card a {
    color: var(--gold);
    text-decoration: none !important;
    font-weight: 600;
    margin-top: auto;
    transition: color 0.3s ease;
    display: inline-block;
    font-size: 1.05rem;
}

.product-card a:hover {
    color: var(--dark-gold);
    text-decoration: none !important;
}

/* Content Sections */
.content-section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Better readability for policy pages - narrower content width */
.content-section .container {
    max-width: 900px;
    line-height: 1.9;
}

.content-section .container > p:first-of-type {
    font-size: 1.12rem;
    line-height: 2;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    font-weight: 400;
}

.content-section h2 {
    color: var(--dark-gold);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.content-section h3 {
    color: var(--dark-gold);
    font-size: 1.8rem;
    margin: 3.5rem 0 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gold);
    letter-spacing: -0.01em;
}

.content-section h3:first-of-type {
    margin-top: 2rem;
}

.content-section h4 {
    color: var(--dark-gold);
    font-size: 1.4rem;
    margin: 2.5rem 0 1rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.content-section p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: left;
    font-size: 1.08rem;
    line-height: 1.9;
    text-align: justify;
    letter-spacing: 0.01em;
}

.content-section p:first-of-type {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 2rem;
}

.content-section a {
    color: var(--gold);
    text-decoration: none !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.content-section a:hover {
    color: var(--dark-gold);
    text-decoration: none !important;
}

.content-section ul, .content-section ol {
    margin: 1.5rem 0 1.5rem 2.5rem;
    color: var(--text-dark);
    line-height: 2;
    padding-left: 0.5rem;
}

.content-section li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.9;
    padding-left: 1.5rem;
    position: relative;
}

.content-section li strong {
    color: var(--dark-gold);
    font-weight: 600;
}

/* Policy pages specific styles for better readability */
.content-section p strong {
    color: var(--dark-gold);
    font-weight: 600;
}

.content-section h3 + p,
.content-section h4 + p {
    margin-top: 0.5rem;
}

.content-section ul li ul {
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
    margin-left: 1.5rem;
}

.content-section ul li ul li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

/* Better spacing for policy content */
.content-section .container > h3 + p,
.content-section .container > h4 + p {
    margin-top: 0.8rem;
}

.content-section .container > ul + p,
.content-section .container > p + ul {
    margin-top: 1rem;
}

/* Improve list readability with custom bullet */
.content-section ul li::before {
    content: '▪';
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0.3rem;
    font-size: 1rem;
    line-height: 1.9;
}

/* Image with text layout */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.content-with-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.content-with-image.reverse {
    direction: rtl;
}

.content-with-image.reverse > * {
    direction: ltr;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--light-gold);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    font-weight: normal;
    font-size: 0.95rem;
    line-height: 1.6;
}

.submit-btn {
    background: var(--gold);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    width: 100%;
}

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

.error-message {
    color: #d32f2f;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.error-message.active {
    display: block;
}

.success-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4caf50;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
    z-index: 2000;
    animation: slideIn 0.3s ease;
    font-weight: 500;
}

.success-notification.active {
    display: block;
}

.error-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #d32f2f;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
    z-index: 2000;
    animation: slideIn 0.3s ease;
    font-weight: 500;
}

.error-notification.active {
    display: block;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    line-height: 1.8;
}

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

.footer-section p {
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copyright {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.3px;
    font-weight: 400;
    line-height: 1.6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
    padding: 1.5rem 2rem;
    z-index: 1500;
    display: none;
    animation: slideUp 0.4s ease;
}

.cookie-banner.active {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-banner-text {
    flex: 1;
    color: var(--text-dark);
    line-height: 1.6;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn.accept-all {
    background: var(--gold);
    color: var(--white);
}

.cookie-btn.accept-all:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
}

.cookie-btn.essential-only {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-light);
}

.cookie-btn.essential-only:hover {
    background: var(--bg-light);
    border-color: var(--gold);
}

.cookie-btn.reject-all {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-light);
}

.cookie-btn.reject-all:hover {
    background: var(--bg-light);
    border-color: #d32f2f;
    color: #d32f2f;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.large {
        grid-column: span 1;
        flex-direction: column;
    }
    
    .product-card.large img {
        width: 100%;
    }
    
    .product-card.large .product-card-content {
        width: 100%;
    }
    
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 1rem;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .content-section {
        padding: 2rem 1rem;
    }
    
    .products-grid {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }
    
    .product-card-content {
        padding: 1.5rem;
    }
    
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}
