/* ===== MODERN UI RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a1a2e;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* ===== HEADER & NAVIGATION ===== */
.main-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 16px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #c7a252, #8b5e2e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #2d2d3a;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-links a:hover {
    color: #c7a252;
}

.cart-icon-header {
    position: relative;
    cursor: pointer;
    font-size: 1.4rem;
    color: #2d2d3a;
    transition: color 0.3s;
}

.cart-icon-header:hover {
    color: #c7a252;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -12px;
    background: #c7a252;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 20px;
    text-align: center;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #2d2d3a;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        box-shadow: 0 20px 30px rgba(0,0,0,0.1);
        z-index: 999;
    }
    .nav-links.active {
        display: flex;
    }
    .main-nav {
        gap: 16px;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #faf9f7 0%, #f5f2ed 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(199, 162, 82, 0.15);
    color: #8b5e2e;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1e1e2a;
}

.hero-content p {
    font-size: 1.1rem;
    color: #5a5a6e;
    margin-bottom: 32px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: #1e1e2f;
    color: white;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #c7a252;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(199, 162, 82, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid #1e1e2f;
    color: #1e1e2f;
}

.btn-outline:hover {
    background: #1e1e2f;
    color: white;
    border-color: #1e1e2f;
}

.trust-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-stats div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a4a5a;
}

.hero-image img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 25px 45px -12px rgba(0,0,0,0.25);
    transition: transform 0.4s;
}

.hero-image img:hover {
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2.4rem;
    }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c7a252;
    font-weight: 600;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 12px 0 16px;
    color: #1a1a2e;
}

.divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #c7a252, #f3d382);
    margin: 0 auto;
    border-radius: 4px;
}

.section-sub {
    color: #6c6c80;
    margin-top: 16px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 56px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    color: #4a4a5e;
    font-size: 1rem;
}

.mission-vision {
    background: #f9f7f3;
    padding: 20px;
    border-radius: 20px;
    margin-top: 24px;
}

.mission-vision div {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.about-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-card {
    background: linear-gradient(145deg, #ffffff, #f8f6f2);
    padding: 32px 24px;
    border-radius: 28px;
    text-align: center;
    flex: 1;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    border: 1px solid #eee8e0;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #c7a252;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c6c80;
}

@media (max-width: 800px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 0;
    background: #fefcf9;
}

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

.service-card {
    background: white;
    padding: 36px 24px;
    border-radius: 32px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    border: 1px solid #f0e9e0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.08);
    border-color: #c7a252;
}

.service-icon {
    font-size: 2.8rem;
    color: #c7a252;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card p {
    color: #5a5a6e;
}

/* ===== PRODUCTS SECTION (ECOMMERCE) ===== */
.products-section {
    padding: 80px 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px;
}

.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: 0.25s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee8e0;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.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-actions {
    position: absolute;
    bottom: 12px;
    right: 12px;
    opacity: 0;
    transition: 0.2s;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.quick-view {
    background: rgba(30,30,47,0.9);
    border: none;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.quick-view:hover {
    background: #c7a252;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.product-desc {
    font-size: 0.85rem;
    color: #7a7a8a;
    margin-bottom: 16px;
}

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

.price {
    font-weight: 800;
    font-size: 1.3rem;
    color: #1e1e2f;
}

.add-to-cart-btn {
    background: #1e1e2f;
    border: none;
    padding: 8px 16px;
    border-radius: 30px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}

.add-to-cart-btn:hover {
    background: #c7a252;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 80px 0;
    background: #fefcf9;
}

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

.gallery-item {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 16 / 7;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    background: white;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    color: #1e1e2f;
}

@media (max-width: 640px) {
    .gallery-item.wide {
        grid-column: span 1;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 0;
    background: white;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-card-info {
    background: #faf8f5;
    padding: 20px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.2s;
}

.contact-card-info i {
    font-size: 1.8rem;
    color: #c7a252;
}

.contact-card-info h4 {
    font-size: 0.9rem;
    color: #8b8b9e;
    margin-bottom: 4px;
}

.contact-card-info p, .contact-card-info a {
    font-weight: 600;
    color: #1e1e2f;
    text-decoration: none;
}

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

.social-links a {
    background: #f0ebe3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e1e2f;
    font-size: 1.2rem;
    transition: 0.2s;
}

.social-links a:hover {
    background: #c7a252;
    color: white;
}

.contact-form {
    background: #fefcf9;
    padding: 32px;
    border-radius: 32px;
}

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

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e6dfd5;
    border-radius: 20px;
    font-family: inherit;
    background: white;
    margin-bottom: 16px;
    transition: 0.2s;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #c7a252;
    box-shadow: 0 0 0 3px rgba(199,162,82,0.2);
}

.form-feedback {
    margin-top: 12px;
    font-size: 0.85rem;
}

@media (max-width: 880px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CART SIDEBAR ===== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    z-index: 1100;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.cart-sidebar.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.close-cart {
    cursor: pointer;
    font-size: 1.4rem;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0e9e0;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
}

.cart-item-details h4 {
    font-size: 0.9rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.cart-item-actions button {
    background: #f0ebe3;
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    cursor: pointer;
}

.cart-footer {
    border-top: 1px solid #ddd;
    padding-top: 16px;
    margin-top: 12px;
}

.cart-total {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.btn-checkout {
    width: 100%;
    background: #c7a252;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 40px;
    font-weight: 600;
}

/* ===== FOOTER ===== */
.main-footer {
    background: #1a1a2a;
    color: #d4d4dc;
    padding-top: 60px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    width: 48px;
    border-radius: 12px;
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b4b4c4;
    text-decoration: none;
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: #c7a252;
}

.newsletter {
    display: flex;
    gap: 8px;
}

.newsletter input {
    flex: 1;
    padding: 12px;
    border-radius: 40px;
    border: none;
    background: #2a2a3a;
    color: white;
}

.newsletter button {
    background: #c7a252;
    border: none;
    width: 44px;
    border-radius: 40px;
    color: white;
    cursor: pointer;
}

.news-note {
    font-size: 0.7rem;
    margin-top: 12px;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid #2a2a3a;
    text-align: center;
    padding: 24px;
    font-size: 0.85rem;
}