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

:root {
    --burgundy: #6b2c2c;
    --bronze: #8b6f47;
    --cream: #f4ede4;
    --muted-black: #1a1715;
    --overlay-dark: rgba(26, 23, 21, 0.7);
    --overlay-light: rgba(244, 237, 228, 0.95);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: var(--muted-black);
    color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 23, 21, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--bronze);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--cream);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.logo img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

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

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--burgundy);
    color: var(--cream);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 23, 21, 0.5), rgba(26, 23, 21, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--cream);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--bronze);
    margin-bottom: 2rem;
    letter-spacing: 3px;
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto;
    color: var(--cream);
    opacity: 0.9;
}

.quote-future {
    background: var(--burgundy);
    padding: 5rem 2rem;
}

.future-quote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.future-quote p {
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.future-quote cite {
    font-size: 1rem;
    color: var(--bronze);
    font-style: normal;
    letter-spacing: 2px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 4px;
    color: var(--cream);
}

.features-section {
    background: var(--muted-black);
    padding: 8rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.feature-card {
    background: rgba(244, 237, 228, 0.05);
    padding: 3rem 2rem;
    border: 1px solid var(--bronze);
    transition: transform 0.3s, background 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(244, 237, 228, 0.08);
}

.feature-icon {
    color: var(--bronze);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--cream);
    font-weight: 400;
}

.feature-card p {
    color: var(--cream);
    opacity: 0.85;
    line-height: 1.8;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 1px solid var(--bronze);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--bronze);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0.8;
}

.about-collection {
    background: linear-gradient(to bottom, var(--muted-black), #2a2422);
    padding: 8rem 0;
}

.collection-content {
    max-width: 1000px;
    margin: 0 auto;
}

.collection-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 3px;
    color: var(--cream);
}

.collection-content p {
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 1.8rem;
    color: var(--cream);
    opacity: 0.9;
}

.quality-badges {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--bronze);
}

.badge-item svg {
    flex-shrink: 0;
}

.badge-item span {
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: var(--cream);
}

.collection-section,
.exhibition-section,
.visitor-info-section {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 23, 21, 0.85), rgba(107, 44, 44, 0.6));
}

.section-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    background: rgba(244, 237, 228, 0.95);
    padding: 4rem;
    color: var(--muted-black);
}

.section-content.left-align {
    margin-left: 10%;
}

.section-content.right-align {
    margin-left: auto;
    margin-right: 10%;
}

.section-heading {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 4px;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--burgundy);
    color: var(--cream);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--bronze);
}

.products-section {
    background: var(--muted-black);
    padding: 8rem 0;
}

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

.product-card {
    background: rgba(244, 237, 228, 0.03);
    border: 1px solid var(--bronze);
    overflow: hidden;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

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

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

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

.product-info {
    padding: 2rem;
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--cream);
    font-weight: 400;
}

.product-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--cream);
    opacity: 0.85;
}

.product-price {
    font-size: 1.8rem;
    color: var(--bronze);
    font-weight: 300;
}

.testimonials-section {
    background: linear-gradient(to bottom, var(--muted-black), #2a2422);
    padding: 8rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: rgba(244, 237, 228, 0.05);
    padding: 3rem;
    border-left: 3px solid var(--bronze);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--cream);
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--bronze);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--cream);
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer {
    background: #0f0d0c;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--bronze);
}

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

.footer-section h4 {
    color: var(--bronze);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    font-weight: 400;
}

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

.registration-number {
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.8;
    transition: color 0.3s, opacity 0.3s;
}

.footer-links a:hover {
    color: var(--bronze);
    opacity: 1;
}

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

.social-links a {
    color: var(--cream);
    opacity: 0.7;
    transition: color 0.3s, opacity 0.3s;
}

.social-links a:hover {
    color: var(--bronze);
    opacity: 1;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(139, 111, 71, 0.3);
    text-align: center;
}

.footer-bottom p {
    color: var(--cream);
    opacity: 0.6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 23, 21, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    z-index: 10000;
    border-top: 2px solid var(--bronze);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: var(--cream);
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: background 0.3s, color 0.3s;
}

.cookie-btn.accept {
    background: var(--burgundy);
    color: var(--cream);
}

.cookie-btn.accept:hover {
    background: var(--bronze);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--bronze);
}

.cookie-btn.decline:hover {
    background: rgba(244, 237, 228, 0.1);
}

.cookie-link {
    color: var(--bronze);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.cookie-link:hover {
    border-bottom-color: var(--bronze);
}

.product-detail-section {
    padding: 8rem 0 4rem;
    background: var(--muted-black);
}

.product-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.product-detail-image {
    width: 100%;
    position: sticky;
    top: 120px;
}

.product-detail-image img {
    width: 100%;
    height: auto;
    border: 1px solid var(--bronze);
}

.product-detail-info h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--cream);
    letter-spacing: 2px;
}

.product-detail-price {
    font-size: 2.5rem;
    color: var(--bronze);
    margin-bottom: 2rem;
}

.product-detail-description {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 3rem;
    color: var(--cream);
    opacity: 0.9;
}

.product-details-list {
    background: rgba(244, 237, 228, 0.05);
    padding: 2rem;
    border: 1px solid var(--bronze);
    margin-bottom: 3rem;
}

.product-details-list h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--bronze);
    font-weight: 400;
}

.product-details-list ul {
    list-style: none;
}

.product-details-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(139, 111, 71, 0.2);
    color: var(--cream);
    opacity: 0.85;
}

.product-details-list li:last-child {
    border-bottom: none;
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1.2rem 3rem;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--burgundy);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--bronze);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--bronze);
}

.btn-secondary:hover {
    background: rgba(244, 237, 228, 0.1);
}

.cart-section,
.checkout-section,
.success-section,
.contact-section {
    padding: 8rem 0 4rem;
    background: var(--muted-black);
    min-height: 80vh;
}

.cart-container,
.checkout-container,
.success-container,
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--cream);
    letter-spacing: 4px;
}

.cart-empty {
    text-align: center;
    padding: 5rem 2rem;
}

.cart-empty p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--cream);
    opacity: 0.8;
}

.cart-items {
    margin-bottom: 3rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 2rem;
    padding: 2rem;
    background: rgba(244, 237, 228, 0.05);
    border: 1px solid var(--bronze);
    margin-bottom: 1.5rem;
    align-items: center;
}

.cart-item-image img {
    width: 100%;
    height: auto;
}

.cart-item-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--cream);
    font-weight: 400;
}

.cart-item-price {
    font-size: 1.3rem;
    color: var(--bronze);
    margin-bottom: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: 1px solid var(--bronze);
    background: transparent;
    color: var(--cream);
    cursor: pointer;
    transition: background 0.3s;
}

.quantity-btn:hover {
    background: rgba(244, 237, 228, 0.1);
}

.quantity-value {
    font-size: 1.1rem;
    color: var(--cream);
    min-width: 30px;
    text-align: center;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.remove-btn {
    background: transparent;
    border: none;
    color: var(--burgundy);
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.remove-btn:hover {
    color: var(--bronze);
}

.cart-summary {
    background: rgba(244, 237, 228, 0.05);
    padding: 3rem;
    border: 1px solid var(--bronze);
    max-width: 500px;
    margin-left: auto;
}

.cart-summary h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--cream);
    font-weight: 400;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 111, 71, 0.2);
    color: var(--cream);
}

.summary-row.total {
    font-size: 1.5rem;
    color: var(--bronze);
    border-bottom: none;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--bronze);
}

.checkout-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(244, 237, 228, 0.05);
    padding: 4rem;
    border: 1px solid var(--bronze);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--cream);
    font-size: 1rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(26, 23, 21, 0.8);
    border: 1px solid var(--bronze);
    color: var(--cream);
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bronze);
    background: rgba(26, 23, 21, 0.9);
}

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

.submit-btn {
    width: 100%;
    padding: 1.5rem;
    background: var(--burgundy);
    color: var(--cream);
    border: none;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

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

.success-message {
    text-align: center;
    padding: 5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    color: var(--bronze);
    margin-bottom: 2rem;
}

.success-message h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--cream);
    font-weight: 300;
}

.success-message p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--cream);
    opacity: 0.85;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info {
    background: rgba(244, 237, 228, 0.05);
    padding: 3rem;
    border: 1px solid var(--bronze);
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--cream);
    font-weight: 400;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: var(--cream);
}

.info-icon {
    color: var(--bronze);
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.info-text p {
    opacity: 0.85;
    line-height: 1.7;
}

.about-section {
    padding: 8rem 0 4rem;
    background: var(--muted-black);
}

.about-hero {
    max-width: 1000px;
    margin: 0 auto 5rem;
    text-align: center;
    padding: 0 2rem;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--cream);
    letter-spacing: 4px;
}

.about-hero p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--cream);
    opacity: 0.9;
}

.team-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-section h2 {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--cream);
    letter-spacing: 3px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.team-member {
    text-align: center;
    background: rgba(244, 237, 228, 0.05);
    padding: 2rem;
    border: 1px solid var(--bronze);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 2px solid var(--bronze);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--cream);
    font-weight: 400;
}

.team-member .role {
    color: var(--bronze);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.team-member .bio {
    color: var(--cream);
    opacity: 0.85;
    line-height: 1.7;
}

.notification {
    position: fixed;
    top: 100px;
    right: 2rem;
    background: var(--burgundy);
    color: var(--cream);
    padding: 1.5rem 2rem;
    border: 1px solid var(--bronze);
    z-index: 9999;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .product-detail-image {
        position: static;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title,
    .page-title {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .section-content {
        padding: 2.5rem;
    }
    
    .section-content.left-align,
    .section-content.right-align {
        margin-left: 5%;
        margin-right: 5%;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: start;
    }
}