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

:root {
    --primary-dark: #1a2332;
    --secondary-dark: #2c3e50;
    --charcoal: #36454f;
    --gold: #d4af37;
    --gold-light: #f0d878;
    --white: #ffffff;
    --light-gray: #f4f4f4;
    --text-gray: #666;
    --border-color: #ddd;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--white);
}

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

header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: bold;
    gap: 10px;
}

.logo img {
    border-radius: 50%;
    border: 2px solid var(--gold);
}

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

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

.cart-count {
    background: var(--gold);
    color: var(--primary-dark);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: 0.3s;
}

.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--charcoal) 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-hero {
    display: inline-block;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-hero:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.stats {
    background: var(--charcoal);
    padding: 60px 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold);
}

.features {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.about-services {
    padding: 80px 0;
    background: var(--white);
}

.about-services-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-services-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 20px;
    text-align: justify;
}

.products {
    padding: 80px 0;
    background: var(--light-gray);
}

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

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

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

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

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

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

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

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

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 20px;
}

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

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

.testimonials {
    padding: 80px 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.testimonial-rating {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author strong {
    color: var(--primary-dark);
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.review-button-container {
    text-align: center;
}

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

.btn-review:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.consultation-form {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--charcoal) 100%);
    color: var(--white);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-wrapper .section-title {
    color: var(--gold);
}

.form-wrapper .section-title::after {
    background: var(--white);
}

.form-subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--light-gray);
}

.elegant-form {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gold);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    font-size: 1rem;
    background: rgba(255,255,255,0.9);
    color: var(--primary-dark);
    transition: border-color 0.3s;
}

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

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

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

footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 10px;
}

.footer-section i {
    color: var(--gold);
    margin-right: 10px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--charcoal);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.pagination {
    margin-top: 15px;
}

.page-number {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: var(--gold);
    color: var(--primary-dark);
    border-radius: 50%;
    font-weight: bold;
    text-align: center;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 15px;
}

.cookie-content a {
    color: var(--gold);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-decline {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--gold);
    color: var(--primary-dark);
}

.btn-accept:hover {
    background: var(--gold-light);
}

.btn-decline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-decline:hover {
    background: rgba(212, 175, 55, 0.1);
}

.product-detail {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.product-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-detail-info h1 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.product-price-large {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 30px;
}

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

.product-description-full h3 {
    color: var(--primary-dark);
    margin: 25px 0 15px;
    font-size: 1.5rem;
}

.service-list {
    list-style: none;
    margin-bottom: 20px;
}

.service-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.service-list i {
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.2rem;
}

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

.btn-add-cart,
.btn-buy-now {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-add-cart {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-add-cart:hover {
    background: var(--charcoal);
    transform: translateY(-2px);
}

.btn-buy-now {
    background: var(--gold);
    color: var(--primary-dark);
}

.btn-buy-now:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 20px 30px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
    animation: slideIn 0.3s ease;
}

.notification.show {
    display: block;
}

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

.cart-section {
    padding: 80px 0;
    background: var(--light-gray);
    min-height: 60vh;
}

.page-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 40px;
    text-align: center;
}

.cart-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.cart-items {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    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(--primary-dark);
    margin-bottom: 10px;
}

.cart-item-price {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: bold;
}

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

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.quantity-btn:hover {
    background: var(--gold);
    color: var(--primary-dark);
}

.quantity-value {
    font-weight: bold;
    min-width: 30px;
    text-align: center;
}

.remove-item {
    background: #e74c3c;
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.remove-item:hover {
    background: #c0392b;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: 10px;
}

.empty-cart i {
    font-size: 5rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.empty-cart p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.cart-summary {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: fit-content;
}

.cart-summary h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.summary-row.total {
    border-bottom: none;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-dark);
}

.summary-row.total span:last-child {
    color: var(--gold);
}

.btn-checkout {
    width: 100%;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

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

.checkout-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.checkout-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.checkout-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.checkout-form h2 {
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

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

.order-summary {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: fit-content;
}

.order-summary h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.order-total {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--gold);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-dark);
}

.order-total span:last-child {
    color: var(--gold);
}

.success-section {
    padding: 100px 0;
    background: var(--light-gray);
    min-height: 60vh;
}

.success-content {
    text-align: center;
    background: var(--white);
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    font-size: 5rem;
    color: #27ae60;
    margin-bottom: 30px;
}

.success-content h1 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.success-message {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.success-info {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.success-info p {
    margin-bottom: 10px;
    color: var(--text-gray);
}

.success-info i {
    color: var(--gold);
    margin-right: 10px;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

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

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

.contact-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--charcoal) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.contact-hero p {
    font-size: 1.2rem;
}

.contact-content {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info h2 {
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.contact-details p,
.contact-details a {
    color: var(--text-gray);
    text-decoration: none;
}

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

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2 {
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.contact-form .form-group label {
    color: var(--primary-dark);
}

.contact-form input,
.contact-form textarea {
    border: 2px solid var(--border-color);
    background: var(--light-gray);
}

.about-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--charcoal) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.about-hero p {
    font-size: 1.2rem;
}

.about-story {
    padding: 80px 0;
    background: var(--white);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
    text-align: center;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 20px;
    text-align: justify;
}

.team-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.team-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
}

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

.team-image img {
    width: 100%;
    border-radius: 50%;
    border: 5px solid var(--gold);
}

.team-card h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.team-position {
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--text-gray);
    line-height: 1.7;
}

.values-section {
    padding: 80px 0;
    background: var(--white);
}

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

.value-card {
    text-align: center;
    padding: 30px;
}

.value-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-detail-wrapper,
    .cart-wrapper,
    .checkout-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .success-actions {
        flex-direction: column;
    }

    .product-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

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