/* ============================================
   theopenwindows.store - Pure CSS Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --background: #F9F8F6;
    --surface: #FFFFFF;
    --primary: #8C9A8E;
    --primary-foreground: #FFFFFF;
    --secondary: #EBE6E0;
    --secondary-foreground: #1A1C19;
    --accent: #A67C52;
    --text-primary: #1A1C19;
    --text-secondary: #5C605D;
    --border: #E2DFD8;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    padding-top: 80px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

.heading-xl {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

.heading-lg {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    letter-spacing: -0.01em;
}

.heading-md {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.overline {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 500;
}

.body-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 4rem;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-primary);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-btn {
    position: relative;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.cart-btn:hover {
    background: var(--secondary);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.mobile-menu-btn {
    display: flex;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.mobile-menu-btn:hover {
    background: var(--secondary);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.nav-mobile {
    background: white;
    border-top: 1px solid var(--border);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-mobile .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
}

.nav-mobile .nav-link:hover,
.nav-mobile .nav-link.active {
    background: var(--secondary);
}

.hidden {
    display: none !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #7A8A7C;
}

.btn-secondary {
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: white;
}

.btn-accent {
    background: var(--accent);
    color: white;
}

.btn-accent:hover {
    background: #8B6844;
}

.btn-ghost {
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--text-primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    max-width: 640px;
    padding: 4rem 1rem;
}

@media (min-width: 640px) {
    .hero-content {
        padding: 4rem 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 4rem;
    }
}

.hero-content .overline {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.hero-content .heading-xl {
    color: white;
    margin-bottom: 1.5rem;
}

.hero-content .body-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 28rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Sections */
.section {
    padding: 4rem 1rem;
}

@media (min-width: 640px) {
    .section {
        padding: 6rem 2rem;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 6rem 4rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .overline {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Product Card */
.product-card {
    display: block;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-image-wrapper {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--background);
    margin-bottom: 1rem;
}

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

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-card .overline {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.product-card .heading-md {
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.product-card:hover .heading-md {
    color: var(--primary);
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--accent);
}

.add-to-cart-btn {
    padding: 0.5rem;
    background: var(--background);
    border-radius: 50%;
    transition: all 0.3s;
}

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

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.category-card {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    display: block;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.category-card .heading-md {
    color: white;
    margin-bottom: 0.5rem;
}

.category-card .body-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Banner */
.banner {
    position: relative;
    height: 60vh;
    min-height: 400px;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.banner-content .heading-lg {
    color: white;
    margin-bottom: 1rem;
}

.banner-content .body-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-badge {
    text-align: center;
    padding: 2rem;
}

.trust-badge-icon {
    width: 56px;
    height: 56px;
    background: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
}

.trust-badge .heading-md {
    margin-bottom: 0.5rem;
}

.trust-badge .body-text {
    font-size: 0.875rem;
}

/* Shop Page */
.page-header {
    background: var(--background);
    padding: 2rem 0;
}

.breadcrumb {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

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

@media (min-width: 1024px) {
    .shop-layout {
        grid-template-columns: 240px 1fr;
    }
}

.shop-sidebar {
    display: none;
}

@media (min-width: 1024px) {
    .shop-sidebar {
        display: block;
    }
}

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

.filter-title {
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

.filter-item {
    margin-bottom: 0.25rem;
}

.filter-btn {
    width: 100%;
    text-align: left;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.3s;
    border-radius: 0.25rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-count {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.toolbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sort-select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    background: white;
    font-size: 0.875rem;
    cursor: pointer;
}

.view-toggle {
    display: none;
    border: 1px solid var(--border);
    border-radius: 0.25rem;
    overflow: hidden;
}

@media (min-width: 640px) {
    .view-toggle {
        display: flex;
    }
}

.view-btn {
    padding: 0.5rem;
    transition: all 0.3s;
}

.view-btn.active {
    background: var(--primary);
    color: white;
}

/* Product Page */
.product-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .product-detail {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.product-gallery {
    position: relative;
}

@media (min-width: 1024px) {
    .product-gallery {
        position: sticky;
        top: 100px;
        align-self: start;
    }
}

.product-main-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--background);
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info .overline {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.product-info .heading-lg {
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    width: 16px;
    height: 16px;
    color: var(--border);
}

.star.filled {
    color: var(--accent);
}

.rating-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.product-price-large {
    font-size: 2rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.product-description {
    margin-bottom: 1.5rem;
}

.product-features {
    margin-bottom: 1.5rem;
}

.product-features h3 {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.feature-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.product-dimensions {
    margin-bottom: 1.5rem;
}

.product-dimensions h3 {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-dimensions p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

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

@media (min-width: 640px) {
    .product-actions {
        flex-direction: row;
    }
}

.quantity-selector {
    display: flex;
    border: 1px solid var(--border);
}

.quantity-btn {
    padding: 0.75rem;
    transition: background-color 0.3s;
}

.quantity-btn:hover {
    background: var(--background);
}

.quantity-value {
    padding: 0.75rem 1.5rem;
    min-width: 60px;
    text-align: center;
}

.add-to-cart-large {
    flex: 1;
}

.product-trust {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* Reviews */
.reviews-section {
    background: var(--background);
}

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

@media (min-width: 768px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .review-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: white;
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.review-card .stars {
    margin-bottom: 0.75rem;
}

.review-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
}

.review-author {
    font-size: 0.875rem;
}

.review-author strong {
    display: block;
    color: var(--text-primary);
}

.review-author span {
    color: var(--text-secondary);
}

/* Cart Page */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .cart-layout {
        grid-template-columns: 2fr 1fr;
    }
}

.cart-header {
    display: none;
    grid-template-columns: 6fr 2fr 2fr 2fr;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

@media (min-width: 640px) {
    .cart-header {
        display: grid;
    }
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .cart-item {
        grid-template-columns: 6fr 2fr 2fr 2fr;
        align-items: center;
    }
}

.cart-product {
    display: flex;
    gap: 1rem;
}

.cart-product-image {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--background);
}

.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-product-info .heading-md {
    margin-bottom: 0.25rem;
    transition: color 0.3s;
}

.cart-product-info .heading-md:hover {
    color: var(--primary);
}

.cart-product-price {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

@media (min-width: 640px) {
    .cart-product-price {
        display: none;
    }
}

.remove-btn {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
    transition: color 0.3s;
}

.remove-btn:hover {
    color: #dc2626;
}

.remove-btn svg {
    width: 14px;
    height: 14px;
}

.cart-quantity {
    display: flex;
    justify-content: center;
}

.cart-price {
    display: none;
    font-size: 0.875rem;
    text-align: right;
}

@media (min-width: 640px) {
    .cart-price {
        display: block;
    }
}

.cart-total {
    font-weight: 500;
    text-align: right;
}

.cart-summary {
    background: var(--background);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.cart-summary .heading-md {
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.summary-row span:first-child {
    color: var(--text-secondary);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.summary-total span:first-child {
    font-weight: 500;
}

.summary-total span:last-child {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.checkout-btn {
    width: 100%;
    margin-bottom: 1rem;
}

.summary-note {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
}

.free-shipping-note {
    font-size: 0.75rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.empty-cart svg {
    width: 80px;
    height: 80px;
    color: var(--border);
    margin: 0 auto 1.5rem;
}

.empty-cart .heading-lg {
    margin-bottom: 1rem;
}

.empty-cart .body-text {
    margin-bottom: 2rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

/* Checkout */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.checkout-items {
    margin-bottom: 1.5rem;
}

.checkout-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--background);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.checkout-item-image {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 0.25rem;
}

.checkout-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-info {
    flex: 1;
}

.checkout-item-info p:first-child {
    font-size: 0.875rem;
    font-weight: 500;
}

.checkout-item-info p:last-child {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.checkout-item-price {
    font-size: 0.875rem;
    font-weight: 500;
}

.payment-section {
    background: var(--background);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

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

.payment-header svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.payment-header p {
    font-size: 0.875rem;
    font-weight: 500;
}

.payment-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.payment-icon {
    height: 32px;
    width: 48px;
}

.pay-btn {
    width: 100%;
}

.payment-note {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 1rem;
}

.payment-note a {
    text-decoration: underline;
}

.payment-note a:hover {
    color: var(--text-primary);
}

/* Success Page */
.success-page {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 480px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    color: var(--primary);
    margin: 0 auto 1.5rem;
}

.success-page .heading-lg {
    margin-bottom: 1rem;
}

.success-page .body-text {
    margin-bottom: 0.5rem;
}

.order-id {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.success-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .success-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Processing */
.processing-page {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 480px;
    margin: 0 auto;
}

.processing-icon {
    width: 64px;
    height: 64px;
    color: var(--primary);
    margin: 0 auto 1.5rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* About Page */
.about-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
}

.about-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero .overline {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.about-hero .heading-xl {
    color: white;
}

.about-story {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.about-story .heading-lg {
    margin-bottom: 1.5rem;
}

.about-story .body-text {
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.value-card .heading-md {
    margin-bottom: 0.75rem;
}

.value-card .body-text {
    font-size: 0.875rem;
}

.about-image {
    height: 60vh;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-cta {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.about-cta .heading-lg {
    margin-bottom: 1.5rem;
}

.about-cta .body-text {
    margin-bottom: 2rem;
}

/* Contact Page */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.contact-info .heading-lg {
    margin-bottom: 2rem;
}

.contact-items {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.contact-item h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-map {
    aspect-ratio: 16/9;
    background: var(--background);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.contact-form .heading-lg {
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    background: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
}

/* Policy Pages */
.policy-content {
    max-width: 768px;
    margin: 0 auto;
}

.policy-content h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.policy-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.policy-content li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.policy-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.policy-content a {
    color: var(--primary);
}

.policy-content a:hover {
    text-decoration: underline;
}

.policy-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .policy-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

.policy-highlight {
    background: var(--background);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.policy-highlight svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    margin-bottom: 1rem;
}

.policy-highlight h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.policy-highlight p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Toast */
.toast {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    z-index: 100;
    animation: fadeIn 0.3s;
}

.toast.success {
    background: var(--primary);
}

.toast.error {
    background: #dc2626;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col {
    
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 0.875rem;
    color: #A0A0A0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: #A0A0A0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact span,
.footer-contact a {
    color: #A0A0A0;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #A0A0A0;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
}

.payment-icon {
    height: 24px;
    width: 40px;
}

/* Utility */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
