/* ===========================
   GLOBAL STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #d4af37;
    color: #1a1a1a;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===========================
   HEADER
   =========================== */
header {
    background-color: #1a1a1a;
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
}

header nav {
    display: flex;
    gap: 30px;
}

header nav a {
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

header nav a:hover {
    color: #ffd700;
}

.cta-buttons {
    display: flex;
    gap: 10px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.btn-primary {
    background-color: #d4af37;
    color: #1a1a1a;
}

.btn-primary:hover {
    background-color: #b8941f;
}

.btn-secondary {
    background-color: #333;
    color: white;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

.btn-telegram {
    background-color: #0088cc;
    color: white;
}

.btn-telegram:hover {
    background-color: #006699;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #1da851;
}

.btn-large {
    padding: 15px 30px;
    font-size: 16px;
    width: 100%;
    margin-bottom: 10px;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: #d4af37;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   SECTIONS
   =========================== */
section {
    padding: 60px 0;
}

section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

/* ===========================
   CATEGORIES
   =========================== */
.categories {
    background-color: white;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background-color: #f8f9fa;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 20px;
    color: #1a1a1a;
}

/* ===========================
   PRODUCT GRID
   =========================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-content {
    padding: 20px;
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 10px;
}

.product-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.product-options {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

.product-buttons {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

/* ===========================
   FEATURED PRODUCTS
   =========================== */
.featured-products {
    background-color: #f8f9fa;
}

/* ===========================
   WHY BUY SECTION
   =========================== */
.why-buy {
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.benefit-card p {
    color: #666;
}

/* ===========================
   SHOP PAGE
   =========================== */
.shop-section {
    background-color: white;
}

.filter-controls {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.search-bar {
    margin-bottom: 15px;
}

.search-bar input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.filter-dropdowns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.filter-dropdowns select {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background-color: white;
    cursor: pointer;
}

/* ===========================
   PRODUCT DETAILS PAGE
   =========================== */
.product-details {
    background-color: white;
}

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #d4af37;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-images {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    width: 100%;
    height: 500px;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.thumbnail {
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbnail:hover {
    border-color: #d4af37;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.product-info .product-price {
    font-size: 28px;
    color: #d4af37;
    margin-bottom: 20px;
}

.product-meta {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.product-meta p {
    margin-bottom: 10px;
    font-size: 15px;
}

.product-description {
    margin-bottom: 30px;
}

.product-description h3 {
    margin-bottom: 10px;
}

.product-selection {
    margin-bottom: 30px;
}

.selection-group {
    margin-bottom: 20px;
}

.selection-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.selection-group select,
.selection-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.order-buttons {
    margin-bottom: 30px;
}

.product-notes {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.product-notes p {
    margin-bottom: 10px;
    font-size: 14px;
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-section,
.contact-section,
.policy-section {
    background-color: white;
}

.about-content,
.contact-layout,
.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-story,
.about-mission,
.about-location,
.about-promise,
.about-cta,
.policy-block {
    margin-bottom: 50px;
}

.about-content h2,
.policy-block h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-content p,
.policy-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.promise-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.promise-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.promise-item p {
    font-size: 14px;
    color: #666;
}

.cta-buttons-center {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-methods {
    margin-top: 30px;
}

.contact-method {
    margin-bottom: 30px;
}

.contact-method h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-method p {
    font-size: 16px;
    color: #666;
}

.contact-method a {
    color: #d4af37;
}

.contact-form-container h2 {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.map-section {
    margin-top: 50px;
}

.map-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

/* ===========================
   POLICY PAGE
   =========================== */
.policy-block h3 {
    font-size: 20px;
    margin: 20px 0 10px 0;
    color: #333;
}

.policy-block ul,
.policy-block ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

.policy-block li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* ===========================
   FOOTER
   =========================== */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #d4af37;
}

.footer-section p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-section a {
    color: white;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    header nav {
        gap: 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-layout {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .filter-dropdowns {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .promise-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    section {
        padding: 40px 0;
    }

    section h2 {
        font-size: 28px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}
