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

:root {
    --gold-light: #f4e4c1;
    --gold-medium: #d4af37;
    --gold-dark: #b8860b;
    --gold-darker: #8b6914;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-light: #f5f5f5;
    --gray-medium: #888;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: linear-gradient(135deg, #f4e4c1 0%, #ffffff 50%, #f4e4c1 100%);
    min-height: 100vh;
}

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

/* Header */
header {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-medium) 100%);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
}

.logo-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo-subtitle {
    font-size: 12px;
    color: var(--gold-light);
    letter-spacing: 4px;
    margin-top: -5px;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation */
.main-nav {
    display: flex;
    gap: 25px;
    flex: 1;
    justify-content: center;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 5px;
    white-space: nowrap;
}

.main-nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Shop Button */
.shop-button {
    background: var(--white);
    color: var(--gold-dark);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.shop-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: var(--gold-light);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--gold-medium) 0%, var(--gold-dark) 100%);
    padding: 100px 20px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 10px;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.hero-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--gold-dark);
    padding: 18px 50px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    background: var(--gold-light);
}

/* Features */
.features {
    padding: 80px 20px;
    background: var(--white);
}

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

.feature-card {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--white) 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    border: 2px solid var(--gold-light);
}

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

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    color: var(--gold-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

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

/* Products Overview */
.products-overview {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #ffffff 0%, var(--gold-light) 100%);
}

.section-title {
    text-align: center;
    font-size: 42px;
    color: var(--gold-dark);
    margin-bottom: 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

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

.category-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--black);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--gold-light);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    border-color: var(--gold-medium);
}

.category-image {
    font-size: 70px;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 26px;
    color: var(--gold-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.category-card p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* About Brief */
.about-brief {
    padding: 80px 20px;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--white) 100%);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.about-content h2 {
    font-size: 38px;
    color: var(--gold-dark);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--black);
}

.text-link {
    display: inline-block;
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: var(--gold-darker);
    transform: translateX(5px);
}

/* Content Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-medium) 100%);
    padding: 80px 20px 60px;
    text-align: center;
    color: var(--white);
}

.page-title {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 20px;
    background: var(--white);
}

.content-box {
    max-width: 900px;
    margin: 0 auto 40px;
    background: linear-gradient(to right, var(--white) 0%, var(--gold-light) 100%);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    border-left: 5px solid var(--gold-medium);
}

.content-box h2 {
    font-size: 32px;
    color: var(--gold-dark);
    margin-bottom: 25px;
    font-weight: 700;
}

.content-box h3 {
    font-size: 24px;
    color: var(--gold-darker);
    margin: 30px 0 15px;
    font-weight: 600;
}

.content-box p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--black);
}

.content-box ul, .content-box ol {
    margin: 20px 0 20px 30px;
}

.content-box li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--black);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.price-table th {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-medium) 100%);
    color: var(--white);
    padding: 18px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
}

.price-table td {
    padding: 15px 18px;
    border-bottom: 1px solid var(--gold-light);
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tr:hover {
    background: var(--gold-light);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--gold-darker) 0%, var(--gold-dark) 100%);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--gold-light);
    font-weight: 700;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
}

.footer-section a {
    display: block;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 12px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--gold-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(180deg, var(--gold-dark) 0%, var(--gold-darker) 100%);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 5px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 25px rgba(0,0,0,0.3);
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav a {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .shop-button {
        padding: 10px 20px;
        font-size: 14px;
        position: relative;
        z-index: 1001;
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: 5px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .page-title {
        font-size: 36px;
    }

    .content-box {
        padding: 30px 20px;
    }

    .feature-grid, .product-categories {
        grid-template-columns: 1fr;
    }

    .logo-text {
        font-size: 24px;
    }

    .price-table {
        font-size: 14px;
    }

    .price-table th,
    .price-table td {
        padding: 12px 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-content {
        padding: 30px 20px;
    }
}
