:root {
    --primary-color: #1a1a2e;
    --secondary-color: #c9a961;
    --accent-color: #8b7355;
    --text-dark: #2d2d2d;
    --text-light: #6b6b6b;
    --bg-light: #f8f7f4;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 15px 50px rgba(0,0,0,0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0.98), rgba(26, 26, 46, 0.95));
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(201,169,97,0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    background: linear-gradient(135deg, var(--secondary-color), #d4b574);
    color: var(--primary-color);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(201,169,97,0.4);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo-text {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, var(--white), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    position: relative;
    padding: 8px 0;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.cart-link {
    position: relative;
    font-size: 20px;
    padding: 10px 20px !important;
    background: rgba(201,169,97,0.15);
    border-radius: 10px;
    border: 1px solid rgba(201,169,97,0.3);
    transition: var(--transition);
}

.cart-link:hover {
    background: rgba(201,169,97,0.25);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 8px;
    background: linear-gradient(135deg, var(--secondary-color), #d4b574);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(201,169,97,0.5);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 90px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 50%, #3a3a52 100%);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(201,169,97,0.1)" stroke-width="1"/></svg>');
    opacity: 0.3;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201,169,97,0.15) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 28px;
    color: var(--secondary-color);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out;
}

.hero-main {
    font-size: 72px;
    color: var(--white);
    font-weight: 700;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.btn {
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #b89850;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,169,97,0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 80px;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.featured-categories {
    padding: 120px 0;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.category-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.category-image {
    height: 300px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 40px;
}

.category-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.category-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.category-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
}

.category-link:hover {
    gap: 15px;
}

.expertise-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.expertise-text h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.expertise-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 32px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.expertise-visual {
    position: relative;
}

.visual-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.visual-card img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.visual-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.featured-products {
    padding: 120px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

.product-image {
    height: 300px;
    overflow: hidden;
    background: var(--bg-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-category {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.product-price {
    margin-bottom: 20px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
}

.section-cta {
    text-align: center;
}

.testimonials {
    padding: 120px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 18px;
    color: var(--primary-color);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color), #2d2d44);
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 26px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--secondary-color), #d4b574);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-column p {
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.75);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.footer-column ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 16px;
}

.contact-info i {
    color: var(--secondary-color);
    margin-top: 4px;
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
    background: rgba(0,0,0,0.2);
}

.footer-legal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 25px;
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.footer-legal-section {
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.footer-legal h4 {
    color: var(--secondary-color);
    font-size: 13px;
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-legal h4::after {
    display: none;
}

.copyright {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-container {
        padding: 20px 30px;
    }
    
    .hero-main {
        font-size: 56px;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: var(--white);
        flex-direction: column;
        padding: 40px;
        gap: 30px;
        transition: var(--transition);
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-main {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 40px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 15px 20px;
    }
    
    .logo-text {
        display: none;
    }
    
    .hero-main {
        font-size: 32px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}


/* Modern Hero Section */
.hero-modern {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f7f4 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(201,169,97,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-left {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--secondary-color), #d4b574);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(201,169,97,0.3);
}

.hero-title-modern {
    font-size: 64px;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, var(--secondary-color), #d4b574);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-desc-modern {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.feature-badge i {
    color: #22c55e;
    font-size: 16px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-modern-primary {
    background: linear-gradient(135deg, var(--secondary-color), #d4b574);
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(201,169,97,0.3);
}

.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201,169,97,0.4);
}

.btn-modern-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-modern-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-avatars {
    display: flex;
    margin-left: -10px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), #d4b574);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    margin-left: -10px;
    font-size: 20px;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.trust-text strong {
    font-size: 15px;
    color: var(--primary-color);
}

.trust-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--secondary-color);
    font-size: 14px;
}

.trust-stars span {
    color: var(--text-light);
    font-weight: 600;
}

.hero-right {
    position: relative;
}

.hero-visual-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-visual-card img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.visual-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--white);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.visual-overlay {
    position: absolute;
    bottom: 25px;
    right: 25px;
}

.overlay-stat {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.stat-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating-card-1 {
    top: 80px;
    left: -50px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 100px;
    left: -30px;
    animation-delay: 1.5s;
}

.floating-card i {
    font-size: 28px;
    color: var(--secondary-color);
}

.floating-card strong {
    display: block;
    font-size: 15px;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.floating-card span {
    font-size: 13px;
    color: var(--text-light);
}

/* Brands Showcase */
.brands-showcase {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.brands-label {
    text-align: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 600;
}

.brands-marquee {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.brand-item {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-light);
    opacity: 0.6;
    transition: var(--transition);
    font-family: 'Playfair Display', serif;
}

.brand-item:hover {
    opacity: 1;
    color: var(--secondary-color);
}

/* Modern Categories */
.categories-modern {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header-modern {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-tag {
    display: inline-block;
    background: rgba(201,169,97,0.1);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-header-modern h2 {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-header-modern p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.categories-modern-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
}

.category-modern-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    transition: var(--transition);
}

.category-modern-card.category-large {
    grid-row: span 2;
    height: 930px;
}

.category-modern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.category-modern-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-modern-card:hover .category-modern-bg img {
    transform: scale(1.1);
}

.category-modern-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26,26,46,0.9) 0%, rgba(26,26,46,0.3) 50%, transparent 100%);
}

.category-modern-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.category-icon-modern {
    width: 70px;
    height: 70px;
    background: rgba(201,169,97,0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    border: 1px solid rgba(201,169,97,0.3);
}

.category-modern-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--white);
}

.category-modern-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

.category-modern-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.category-modern-link:hover {
    gap: 15px;
}

/* Value Proposition */
.value-proposition {
    padding: 100px 0;
    background: var(--white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), #d4b574);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(201,169,97,0.3);
}

.value-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Products Showcase */
.products-showcase {
    padding: 100px 0;
    background: var(--bg-light);
}

.products-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.product-showcase-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.product-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: var(--secondary-color);
}

.product-showcase-card.featured {
    grid-column: span 2;
}

.product-showcase-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(201,169,97,0.4);
}

.product-showcase-badge.new {
    background: #22c55e;
    color: var(--white);
}

.product-showcase-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: var(--bg-light);
}

.product-showcase-card.featured .product-showcase-image {
    height: 400px;
}

.product-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-showcase-card:hover .product-showcase-image img {
    transform: scale(1.08);
}

.product-quick-view {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: var(--transition);
}

.product-showcase-card:hover .product-quick-view {
    opacity: 1;
}

.quick-view-btn {
    width: 100%;
    padding: 12px;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.quick-view-btn:hover {
    background: var(--secondary-color);
}

.product-showcase-content {
    padding: 30px;
}

.product-category-tag {
    display: inline-block;
    background: rgba(201,169,97,0.1);
    color: var(--secondary-color);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.product-showcase-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-size: 14px;
}

.product-rating span {
    color: var(--text-light);
    font-size: 13px;
}

.product-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-showcase-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.product-price-modern {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-main {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
}

.price-label {
    font-size: 13px;
    color: var(--text-light);
}

.btn-add-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-cart:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.section-cta-modern {
    text-align: center;
}

.btn-modern-large {
    padding: 20px 50px;
    font-size: 17px;
}

/* Testimonials Modern */
.testimonials-modern {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-modern-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.testimonial-modern-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), #d4b574);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
}

.testimonial-author-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.testimonial-author-info strong {
    font-size: 16px;
    color: var(--primary-color);
}

.testimonial-author-info span {
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-rating-modern {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--white);
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 14px;
}

.testimonial-text-modern {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.testimonial-verified {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #22c55e;
    font-size: 13px;
    font-weight: 600;
}

/* CTA Modern */
.cta-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f0f1e 100%);
    position: relative;
    overflow: hidden;
}

.cta-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,169,97,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-modern-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-tag {
    display: inline-block;
    background: rgba(201,169,97,0.2);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.cta-modern-left h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-modern-left p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}

.cta-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.9);
    font-size: 16px;
}

.cta-benefits i {
    color: #22c55e;
    font-size: 20px;
}

.cta-modern-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-modern-cta {
    background: linear-gradient(135deg, var(--secondary-color), #d4b574);
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(201,169,97,0.4);
    justify-content: center;
}

.btn-modern-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201,169,97,0.5);
}

.btn-modern-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
    justify-content: center;
}

.btn-modern-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.1);
}

.cta-guarantee i {
    color: #22c55e;
    font-size: 20px;
}

/* Responsive Updates */
@media (max-width: 1200px) {
    .hero-grid {
        gap: 60px;
    }
    
    .categories-modern-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .category-modern-card.category-large {
        grid-column: span 2;
        height: 500px;
    }
    
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .floating-card {
        display: none;
    }
    
    .cta-modern-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 42px;
    }
    
    .section-header-modern h2 {
        font-size: 36px;
    }
    
    .categories-modern-grid {
        grid-template-columns: 1fr;
    }
    
    .category-modern-card.category-large {
        grid-column: span 1;
        height: 450px;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .products-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .product-showcase-card.featured {
        grid-column: span 1;
    }
    
    .testimonials-modern-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        background: var(--primary-color);
    }
    
    .nav-menu a {
        color: rgba(255,255,255,0.9);
    }
}

@media (max-width: 480px) {
    .hero-title-modern {
        font-size: 32px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-modern {
        width: 100%;
        justify-content: center;
    }
}


/* Blog Page Styles */
.blog-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), #2d2d44);
    text-align: center;
    color: var(--white);
}

.blog-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    height: 280px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 35px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.blog-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    overflow-y: auto;
    padding: 40px 20px;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--secondary-color);
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
}

.modal-header-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 30px;
}

.modal-title {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.modal-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.modal-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.modal-meta-item i {
    color: var(--secondary-color);
}

.modal-text {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-dark);
}

.modal-text p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 36px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
    
    .modal-header-image {
        height: 250px;
    }
    
    .modal-title {
        font-size: 28px;
    }
}


/* Catalog Page Styles */
.catalog-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), #2d2d44);
    text-align: center;
    color: var(--white);
}

.catalog-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.catalog-section {
    padding: 80px 0;
}

.filters-bar {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 50px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.filter-group select,
.filter-group input {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.filter-reset {
    padding: 12px 24px;
    background: var(--text-light);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    align-self: flex-end;
}

.filter-reset:hover {
    background: var(--primary-color);
}

.products-count {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.modal-image {
    border-radius: 16px;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.modal-details h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.modal-category {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 20px;
}

.modal-price {
    font-size: 42px;
    color: var(--secondary-color);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
}

.modal-description {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

.modal-features {
    margin-bottom: 30px;
}

.modal-features h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.modal-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.modal-features li i {
    color: var(--secondary-color);
}

/* Cart Page Styles */
.cart-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), #2d2d44);
    text-align: center;
    color: var(--white);
}

.cart-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.cart-section {
    padding: 80px 0;
    min-height: 60vh;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.cart-items {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.cart-item-category {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.cart-item-price {
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-light);
    padding: 8px 15px;
    border-radius: 8px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.quantity-value {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}

.remove-btn:hover {
    color: #ef4444;
}

.cart-summary {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.cart-summary h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-row:last-of-type {
    border-bottom: 2px solid var(--border-color);
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-color);
    padding: 20px 0;
    margin-top: 10px;
}

.summary-total {
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    font-size: 32px;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--secondary-color), #d4b574);
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 25px;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,169,97,0.4);
}

.empty-cart {
    text-align: center;
    padding: 80px 40px;
}

.empty-cart i {
    font-size: 80px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.empty-cart h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.empty-cart p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Contact Page Styles */
.contact-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), #2d2d44);
    text-align: center;
    color: var(--white);
}

.contact-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.contact-info-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-item i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-top: 3px;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.contact-form h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--secondary-color), #d4b574);
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,169,97,0.4);
}

/* About Page Styles */
.about-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), #2d2d44);
    text-align: center;
    color: var(--white);
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-photo {
    height: 300px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.team-info .role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-info p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Policy Pages Styles */
.policy-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), #2d2d44);
    text-align: center;
    color: var(--white);
}

.policy-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.policy-section {
    padding: 80px 0;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.policy-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.policy-content ul,
.policy-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.policy-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.policy-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.policy-content a:hover {
    color: var(--primary-color);
}

/* Checkout Page Styles */
.checkout-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), #2d2d44);
    text-align: center;
    color: var(--white);
}

.checkout-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.checkout-section {
    padding: 80px 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.checkout-form {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.checkout-form h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.order-summary {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.order-summary h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.order-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-details {
    flex: 1;
}

.order-item-details h4 {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.order-item-details .quantity {
    font-size: 13px;
    color: var(--text-light);
}

.order-item-price {
    font-weight: 700;
    color: var(--secondary-color);
}

.place-order-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--secondary-color), #d4b574);
    color: var(--primary-color);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 25px;
}

.place-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,169,97,0.4);
}

/* Responsive Updates for All Pages */
@media (max-width: 1024px) {
    .cart-container,
    .contact-grid,
    .about-content,
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .catalog-hero h1,
    .cart-hero h1,
    .contact-hero h1,
    .about-hero h1,
    .policy-hero h1,
    .checkout-hero h1 {
        font-size: 36px;
    }
    
    .filters-bar {
        flex-direction: column;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .modal-image img {
        height: 300px;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }
    
    .cart-item-image {
        width: 80px;
        height: 80px;
    }
    
    .cart-item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .contact-form,
    .checkout-form {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-content {
        padding: 40px 30px;
    }
}


/* Additional Cart Styles */
.cart-items-title {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.shipping-info {
    font-size: 14px;
    color: var(--text-light);
    margin: 15px 0;
}

.continue-shopping-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 15px;
    text-decoration: none;
}

.continue-shopping-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}
