/* ANNA KEY Premium Keychains - Luxury Styling */

:root {
    --primary-color: #B8860B; /* DarkGoldenRod - Gold accent */
    --secondary-color: #2C3E50; /* Darker Blue/Grey for text */
    --accent-color: #FFD700; /* Gold */
    --background-color: #FFFFFF; /* Pure white for high contrast */
    --dark-background: #1A1A1A; /* Dark background for sections */
    --text-color: #2C3E50; /* High contrast text color */
    --light-text-color: #ECF0F1;
    --border-color: #EEEEEE;
    --card-background: #FFFFFF;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-dark: rgba(0, 0, 0, 0.2);
    --font-family-heading: 'Playfair Display', serif;
    --font-family-body: 'Roboto', sans-serif;
}

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

body {
    font-family: var(--font-family-body);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

a:hover {
    color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

p {
    margin-bottom: 1.5rem;
    color: #444;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    font-size: 0.9rem;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white !important;
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.2);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white !important;
    transform: translateY(-5px);
}

.btn-small { padding: 0.6rem 1.5rem; font-size: 0.75rem; }
.btn-large { padding: 1.4rem 3rem; font-size: 1.1rem; }

/* ===== NAVIGATION ===== */
.navbar {
    background-color: var(--secondary-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand { display: flex; flex-direction: column; }
.logo { font-size: 1.8rem; font-weight: 700; color: var(--accent-color); font-family: var(--font-family-heading); }
.tagline { color: #AAA; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; margin-top: -5px; }

.nav-menu { display: flex; list-style: none; gap: 2.5rem; align-items: center; }
.nav-menu a { color: #DDD; font-weight: 500; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; }
.nav-menu a:hover, .nav-menu a.active { color: var(--accent-color); }

.cart-link {
    background-color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    color: white !important;
}

.cart-count {
    background-color: white;
    color: var(--primary-color);
    padding: 0.1rem 0.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    margin-left: 0.5rem;
    font-weight: 900;
}

/* ===== PAGE HEADERS ===== */
.page-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(184, 134, 11, 0.1) 0%, transparent 70%);
}

.page-header h1 {
    color: var(--accent-color);
    font-size: 4rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.3rem;
    color: #AAA;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===== SECTIONS ===== */
section { padding: 8rem 0; }

.section-header { text-align: center; margin-bottom: 5rem; }
.section-title { font-size: 3rem; color: var(--secondary-color); margin-bottom: 1rem; position: relative; display: inline-block; }
.section-title::after { content: ''; display: block; width: 80px; height: 3px; background: var(--primary-color); margin: 15px auto 0; }
.section-subtitle { font-size: 1.2rem; color: #777; max-width: 700px; margin: 0 auto; }

/* ===== FOOTER ===== */
.footer { background: var(--secondary-color); color: white; padding: 8rem 0 3rem; }
.footer-section p { color: #CCC; font-size: 1rem; line-height: 1.8; }
.footer-section p a { color: #DDD; }
.footer-section p a:hover { color: var(--accent-color); }
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 5rem; margin-bottom: 5rem; }
.footer-section h4 { color: var(--accent-color); margin-bottom: 2.5rem; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2px; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 1.2rem; }
.footer-section a { color: #CCC; transition: color 0.3s; }
.footer-section a:hover { color: var(--accent-color); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.3); padding-top: 3rem; text-align: center; color: #FFFFFF; font-size: 0.95rem; letter-spacing: 1px; }
.footer-bottom p { color: #FFFFFF !important; opacity: 1 !important; }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ===== POLICY PAGES CONTENT ===== */
.policy-content { max-width: 900px; margin: 0 auto; background: white; padding: 5rem; border-radius: 30px; box-shadow: 0 20px 60px rgba(0,0,0,0.03); border: 1px solid #EEE; }
.policy-content h2 { font-size: 2rem; margin: 3rem 0 1.5rem; color: var(--secondary-color); border-left: 4px solid var(--primary-color); padding-left: 1.5rem; }
.policy-content p { font-size: 1.1rem; color: #555; margin-bottom: 2rem; text-align: justify; line-height: 1.9; }
.policy-content ul { margin-bottom: 2.5rem; padding-left: 2rem; }
.policy-content li { margin-bottom: 1rem; color: #555; font-size: 1.05rem; text-align: justify; line-height: 1.8; }

/* ===== UTILITIES ===== */
.text-gold { color: var(--primary-color); }
.bg-light { background-color: #FDFBFB; }

@media (max-width: 992px) {
    .footer-content { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .page-header h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .policy-content { padding: 3rem 1.5rem; }
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1A1A2E 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(184, 134, 11, 0.15);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 1px solid rgba(184, 134, 11, 0.3);
}

.hero-title {
    font-size: 4.5rem;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-family: var(--font-family-heading);
}

.hero-description {
    font-size: 1.2rem;
    color: #AAA;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: var(--font-family-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* ===== BRAND STORY SECTION ===== */
.brand-story-section {
    padding: 8rem 0;
    background: white;
}

.brand-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.brand-story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.brand-story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.brand-story-image:hover img {
    transform: scale(1.05);
}

.brand-story-content {
    padding: 2rem 0;
}

.brand-story-content .section-title::after {
    margin: 15px 0 0;
}

.brand-story-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 8rem 0;
    background: var(--secondary-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: rgba(184, 134, 11, 0.3);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.process-step h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: #AAA;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== CATALOG PREVIEW ===== */
.catalog-preview {
    padding: 8rem 0;
    background: #FDFBFB;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.catalog-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #EEE;
}

.catalog-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.catalog-item:hover img {
    transform: scale(1.1);
}

.catalog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: white;
    transition: all 0.3s ease;
}

.catalog-overlay h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.catalog-overlay p {
    color: #CCC;
    font-size: 0.95rem;
    margin: 0;
}

/* ===== SHOP PAGE ===== */
.shop-section {
    padding: 4rem 0 8rem;
}

.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3rem;
}

.shop-sidebar {
    padding: 2rem;
    background: #FAFAFA;
    border-radius: 20px;
    border: 1px solid #EEE;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-title {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-family-heading);
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 1rem;
}

.filter-list {
    list-style: none;
}

.filter-link {
    display: block;
    padding: 0.6rem 1rem;
    color: #555;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    cursor: pointer;
}

.filter-link:hover,
.filter-link.active {
    background: rgba(184, 134, 11, 0.1);
    color: var(--primary-color);
}

.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.product-count {
    color: #888;
    font-size: 0.95rem;
}

.sort-select {
    padding: 0.6rem 1.2rem;
    border: 1px solid #DDD;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #EEE;
    transition: all 0.4s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.product-image-container {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #F8F8F8;
}

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

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

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--secondary-color);
}

.product-category-badge {
    display: inline-block;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-family-heading);
}

/* ===== PRODUCT DETAIL ===== */
.product-detail-section {
    padding: 4rem 0 8rem;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-gallery {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #F8F8F8;
}

.main-image-container {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-info-panel {
    padding: 1rem 0;
}

.product-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-family-heading);
    margin-bottom: 1.5rem;
}

.product-description-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.product-features-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.product-features-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #EEE;
    color: #555;
    font-size: 1rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.personalization-box {
    background: #FAFAFA;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #EEE;
}

.personalization-box h4 {
    margin-bottom: 1rem;
}

.personalization-box .form-group {
    margin-bottom: 1rem;
}

/* ===== CART PAGE ===== */
.cart-section {
    padding: 4rem 0 8rem;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.cart-items-container h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #EEE;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.cart-item-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.cart-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cart-qty-control {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cart-qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #DDD;
    background: white;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-qty-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.cart-qty-val {
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 30px;
    text-align: center;
}

.cart-summary-sidebar {
    position: sticky;
    top: 100px;
}

.cart-summary-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #EEE;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.summary-title {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #EEE;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    color: #555;
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--secondary-color);
    border-top: 2px solid #EEE;
    margin-top: 1rem;
    padding-top: 1.5rem;
}

.empty-cart-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart-state p {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* ===== CHECKOUT PAGE ===== */
.checkout-section {
    padding: 4rem 0 8rem;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.checkout-step {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #EEE;
    margin-bottom: 2rem;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #DDD;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: var(--font-family-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.checkout-summary-panel {
    position: sticky;
    top: 100px;
}

.checkout-summary {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #EEE;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #EEE;
    border-radius: 12px;
    margin-bottom: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: var(--primary-color);
    background: rgba(184, 134, 11, 0.03);
}

.payment-text h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.payment-text p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 4rem 0 8rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info-panel {
    padding: 2rem 0;
}

.contact-info-card {
    margin-bottom: 3rem;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.method-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-text h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.method-text p {
    color: #555;
    margin: 0;
    font-size: 0.95rem;
}

.method-text a {
    color: var(--primary-color);
}

.contact-form-panel {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #EEE;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.contact-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
    padding: 4rem 0 8rem;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.founder-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.founder-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.founder-content {
    padding: 2rem 0;
}

.founder-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.founder-highlight {
    font-size: 1.5rem;
    font-family: var(--font-family-heading);
    color: var(--secondary-color);
    line-height: 1.5;
    margin-bottom: 2rem;
    border-left: 3px solid var(--primary-color);
    padding-left: 1.5rem;
}

.philosophy-section {
    padding: 8rem 0;
    background: #FDFBFB;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.philosophy-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #EEE;
    transition: all 0.4s ease;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border-color: rgba(184, 134, 11, 0.3);
}

.philosophy-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.milestones-section {
    padding: 8rem 0;
    background: var(--secondary-color);
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.milestone-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.milestone-item h3 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.milestone-item p {
    color: #AAA;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.timeline {
    max-width: 800px;
    margin: 4rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(184, 134, 11, 0.3);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 2;
    border: 3px solid var(--secondary-color);
}

.timeline-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #AAA;
    font-size: 0.95rem;
    margin: 0;
}

/* ===== TRACK ORDER ===== */
.track-section {
    padding: 4rem 0 8rem;
}

.track-card {
    max-width: 600px;
    margin: 3rem auto 0;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #EEE;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.track-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.track-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid #DDD;
    border-radius: 12px;
    font-size: 1rem;
}

.track-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.order-details-box {
    padding: 2rem;
    background: #FAFAFA;
    border-radius: 16px;
    border: 1px solid #EEE;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 8rem 0;
    background: #FDFBFB;
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 16px;
    border: 1px solid #EEE;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.faq-box {
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--secondary-color);
}

/* ===== DATA POINTS ===== */
.data-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.data-point-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== POLICY SECTIONS ===== */
.policy-section {
    padding: 4rem 0 8rem;
}

.policy-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid #EEE;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.policy-card h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--secondary-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
}

.policy-card p,
.policy-card li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

.policy-card ul {
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.policy-card li {
    margin-bottom: 0.8rem;
}

/* ===== ACTION AREA ===== */
.action-area {
    text-align: center;
    padding: 5rem 0;
    background: linear-gradient(135deg, #FDFBFB 0%, #EBEDEE 100%);
}

/* ===== FEATURE CHECK ===== */
.feature-check {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #555;
}

/* ===== SHIPPING TABLE ===== */
.shipping-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.shipping-table th,
.shipping-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #EEE;
}

.shipping-table th {
    background: #FAFAFA;
    font-weight: 600;
    color: var(--secondary-color);
}

/* ===== TOAST NOTIFICATION ===== */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    animation: slideInRight 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.toast-notification.success {
    background: #2ECC71;
}

.toast-notification.error {
    background: #E74C3C;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ===== ADDITIONAL RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .hero-stats { gap: 2.5rem; }
    .brand-story-grid { grid-template-columns: 1fr; gap: 3rem; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .catalog-grid { grid-template-columns: repeat(2, 1fr); }
    .product-detail-grid { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
    .checkout-layout { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .founder-grid { grid-template-columns: 1fr; gap: 3rem; }
    .milestones-grid { grid-template-columns: repeat(2, 1fr); }
    .shop-layout { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero { padding: 5rem 0 4rem; min-height: auto; }
    .hero-title { font-size: 2.5rem; }
    .hero-stats { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
    .hero-buttons { flex-direction: column; }
    .process-grid { grid-template-columns: 1fr; }
    .catalog-grid { grid-template-columns: 1fr; }
    .philosophy-grid { grid-template-columns: 1fr; }
    .milestones-grid { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .track-form { flex-direction: column; }
    .timeline::before { left: 20px; }
    .timeline-dot { left: 20px; }
    .timeline-content { width: 100%; padding-left: 50px; }
    .timeline-item:nth-child(even) .timeline-content { margin-left: 0; }
    .policy-card { padding: 2rem 1.5rem; }
}
