* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-onyx: #0a0a0a;
    --antique-gold: #D4AF37;
    --velvet-burgundy: #6B0F1A;
    --gold-accent: #C5A572;
    --text-light: #f5f5f5;
    --bg-overlay: rgba(10, 10, 10, 0.85);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: var(--deep-onyx);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.85) 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--antique-gold);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--antique-gold);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover {
    color: var(--antique-gold);
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--velvet-burgundy);
    color: var(--antique-gold);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.hero {
    height: 70vh;
    background: linear-gradient(rgba(10, 10, 10, 0.6), rgba(107, 15, 26, 0.4)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%230a0a0a"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 40px;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--antique-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 3px;
    font-weight: 700;
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-light);
    letter-spacing: 2px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--antique-gold) 0%, var(--gold-accent) 100%);
    color: var(--deep-onyx);
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.features {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--deep-onyx) 0%, rgba(107, 15, 26, 0.1) 100%);
}

.features h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--antique-gold);
    letter-spacing: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(107, 15, 26, 0.3) 0%, rgba(10, 10, 10, 0.8) 100%);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--antique-gold);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon svg {
    stroke: var(--antique-gold);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--antique-gold);
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border: 1px solid var(--gold-accent);
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: bold;
    color: var(--antique-gold);
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: var(--text-light);
    letter-spacing: 1px;
}

.about-products {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(107, 15, 26, 0.1) 0%, var(--deep-onyx) 100%);
}

.about-products h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--antique-gold);
    letter-spacing: 2px;
}

.about-products-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(107, 15, 26, 0.2);
    padding: 50px;
    border-radius: 10px;
    border: 1px solid var(--gold-accent);
}

.about-products-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
    color: var(--text-light);
}

.products {
    padding: 80px 0;
    background: var(--deep-onyx);
}

.products h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--antique-gold);
    letter-spacing: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background: linear-gradient(135deg, rgba(107, 15, 26, 0.3) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--antique-gold);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--antique-gold);
}

.product-price {
    font-size: 28px;
    font-weight: bold;
    color: var(--gold-accent);
    margin-bottom: 10px;
}

.product-description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-view {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--antique-gold) 0%, var(--gold-accent) 100%);
    color: var(--deep-onyx);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

.product-detail {
    padding: 60px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-detail-image img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid var(--antique-gold);
}

.product-detail-info h1 {
    font-size: 38px;
    color: var(--antique-gold);
    margin-bottom: 20px;
}

.product-detail-price {
    font-size: 36px;
    font-weight: bold;
    color: var(--gold-accent);
    margin-bottom: 30px;
}

.product-detail-description {
    margin-bottom: 30px;
}

.product-detail-description p {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.7;
}

.product-detail-description h3 {
    color: var(--antique-gold);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 22px;
}

.product-detail-description ul {
    list-style: none;
    padding-left: 0;
}

.product-detail-description li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.product-detail-description li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--antique-gold);
}

.product-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-add-cart,
.btn-buy-now {
    flex: 1;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-add-cart {
    background: transparent;
    border: 2px solid var(--antique-gold);
    color: var(--antique-gold);
}

.btn-add-cart:hover {
    background: var(--antique-gold);
    color: var(--deep-onyx);
}

.btn-buy-now {
    background: linear-gradient(135deg, var(--antique-gold) 0%, var(--gold-accent) 100%);
    color: var(--deep-onyx);
}

.btn-buy-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.cart-section,
.checkout-section,
.success-section,
.contact-section {
    padding: 60px 0;
    min-height: 60vh;
}

.cart-section h1,
.checkout-section h1,
.success-section h1,
.contact-hero h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--antique-gold);
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart svg {
    stroke: var(--antique-gold);
    margin-bottom: 30px;
}

.empty-cart p {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.btn-continue,
.btn-contact {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--antique-gold) 0%, var(--gold-accent) 100%);
    color: var(--deep-onyx);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 10px;
}

.btn-continue:hover,
.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.cart-items {
    background: rgba(107, 15, 26, 0.2);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid var(--gold-accent);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--gold-accent);
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-info h3 {
    color: var(--antique-gold);
    margin-bottom: 10px;
}

.cart-item-price {
    font-size: 20px;
    color: var(--gold-accent);
    font-weight: bold;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.qty-btn {
    background: var(--antique-gold);
    color: var(--deep-onyx);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
}

.qty-input {
    width: 50px;
    text-align: center;
    background: transparent;
    border: 1px solid var(--gold-accent);
    color: var(--text-light);
    padding: 5px;
    border-radius: 5px;
}

.btn-remove {
    background: var(--velvet-burgundy);
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-remove:hover {
    background: #8B1424;
}

.cart-summary {
    background: rgba(107, 15, 26, 0.3);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--antique-gold);
    margin-top: 30px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 28px;
    font-weight: bold;
    color: var(--antique-gold);
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--gold-accent);
}

.btn-checkout {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--antique-gold) 0%, var(--gold-accent) 100%);
    color: var(--deep-onyx);
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-checkout:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.checkout-form {
    background: rgba(107, 15, 26, 0.2);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--gold-accent);
}

.checkout-form h2 {
    color: var(--antique-gold);
    margin-bottom: 30px;
    font-size: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--antique-gold);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--gold-accent);
    border-radius: 5px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--antique-gold);
}

.btn-checkout-submit,
.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--antique-gold) 0%, var(--gold-accent) 100%);
    color: var(--deep-onyx);
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-checkout-submit:hover,
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.order-summary {
    background: rgba(107, 15, 26, 0.2);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--gold-accent);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary h2 {
    color: var(--antique-gold);
    margin-bottom: 20px;
    font-size: 24px;
}

.success-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 20px;
}

.success-icon {
    margin-bottom: 30px;
}

.success-icon svg {
    stroke: var(--antique-gold);
}

.success-content h1 {
    color: var(--antique-gold);
    margin-bottom: 20px;
}

.success-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-hero {
    background: linear-gradient(135deg, rgba(107, 15, 26, 0.4) 0%, rgba(10, 10, 10, 0.8) 100%);
    padding: 60px 0;
    text-align: center;
    border-bottom: 2px solid var(--antique-gold);
}

.contact-hero p {
    font-size: 20px;
    color: var(--gold-accent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info h2,
.contact-form-container h2 {
    color: var(--antique-gold);
    margin-bottom: 30px;
    font-size: 28px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(107, 15, 26, 0.2);
    border-radius: 10px;
    border: 1px solid var(--gold-accent);
}

.contact-icon svg {
    stroke: var(--antique-gold);
}

.contact-item h3 {
    color: var(--antique-gold);
    margin-bottom: 10px;
    font-size: 20px;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item a {
    color: var(--gold-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--antique-gold);
}

.contact-form-container {
    background: rgba(107, 15, 26, 0.2);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--gold-accent);
}

.about-hero {
    background: linear-gradient(135deg, rgba(107, 15, 26, 0.4) 0%, rgba(10, 10, 10, 0.8) 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 2px solid var(--antique-gold);
}

.about-hero h1 {
    font-size: 48px;
    color: var(--antique-gold);
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 22px;
    color: var(--gold-accent);
}

.about-story {
    padding: 80px 0;
}

.about-content h2 {
    text-align: center;
    font-size: 38px;
    color: var(--antique-gold);
    margin-bottom: 40px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.team-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--deep-onyx) 0%, rgba(107, 15, 26, 0.1) 100%);
}

.team-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--antique-gold);
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    font-size: 20px;
    color: var(--gold-accent);
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-card {
    background: linear-gradient(135deg, rgba(107, 15, 26, 0.3) 0%, rgba(10, 10, 10, 0.9) 100%);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--antique-gold);
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.team-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 2px solid var(--gold-accent);
}

.team-card h3 {
    font-size: 24px;
    color: var(--antique-gold);
    margin-bottom: 10px;
}

.team-role {
    font-size: 16px;
    color: var(--gold-accent);
    margin-bottom: 15px;
    font-weight: 600;
}

.team-bio {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.values-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(107, 15, 26, 0.1) 0%, var(--deep-onyx) 100%);
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--antique-gold);
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-card {
    background: rgba(107, 15, 26, 0.2);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--gold-accent);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.value-icon {
    margin-bottom: 20px;
}

.value-icon svg {
    stroke: var(--antique-gold);
}

.value-card h3 {
    font-size: 24px;
    color: var(--antique-gold);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    color: var(--text-light);
}

footer {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, #000 100%);
    padding: 60px 0 20px;
    border-top: 2px solid var(--antique-gold);
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--antique-gold);
    font-size: 22px;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section ul {
    color: var(--text-light);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--antique-gold);
}

.reg-number {
    font-size: 14px;
    color: var(--gold-accent);
    margin-top: 10px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--antique-gold);
    transform: translateY(-3px);
}

.social-links svg {
    fill: var(--antique-gold);
}

.social-links a:hover svg {
    fill: var(--deep-onyx);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gold-accent);
    color: var(--text-light);
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(107, 15, 26, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    padding: 25px;
    z-index: 10000;
    border-top: 2px solid var(--antique-gold);
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, var(--antique-gold) 0%, var(--gold-accent) 100%);
    color: var(--deep-onyx);
}

.cookie-btn.decline {
    background: transparent;
    border: 2px solid var(--gold-accent);
    color: var(--gold-accent);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.cookie-link {
    color: var(--antique-gold);
    text-decoration: underline;
}

.view-counter {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(107, 15, 26, 0.9);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--antique-gold);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
    color: var(--text-light);
}

.view-counter svg {
    stroke: var(--antique-gold);
}

.question-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--antique-gold) 0%, var(--gold-accent) 100%);
    color: var(--deep-onyx);
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.question-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.question-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    justify-content: center;
    align-items: center;
}

.question-modal.show {
    display: flex;
}

.question-modal-content {
    background: linear-gradient(135deg, rgba(107, 15, 26, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    padding: 40px;
    border-radius: 10px;
    border: 2px solid var(--antique-gold);
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--antique-gold);
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--gold-accent);
}

.question-modal-content h3 {
    color: var(--antique-gold);
    margin-bottom: 25px;
    font-size: 26px;
}

.question-modal-content input,
.question-modal-content textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--gold-accent);
    border-radius: 5px;
    color: var(--text-light);
    font-family: inherit;
}

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, var(--antique-gold) 0%, var(--gold-accent) 100%);
    color: var(--deep-onyx);
    padding: 15px 25px;
    border-radius: 10px;
    z-index: 10000;
    display: none;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    font-weight: bold;
}

.notification.show {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .features-grid,
    .products-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail-grid,
    .checkout-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .view-counter,
    .question-button {
        bottom: 10px;
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .question-button {
        right: 10px;
    }
    
    .view-counter {
        left: 10px;
    }
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
