/* ===========================
   DUBIS - Brand Stylesheet
   For the rest of us 🐾
   =========================== */

:root {
    --charcoal: #2C2C2C;
    --honey: #C17E3A;
    --cream: #F5F0E8;
    --white: #FFFFFF;
    --light-gray: #f0ebe0;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--charcoal);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--charcoal);
    z-index: 1000;
    padding: 0 2rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-paw {
    font-size: 1.4rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--honey);
    letter-spacing: 3px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--honey);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-toggle {
    background: transparent;
    border: 1px solid var(--honey);
    color: var(--honey);
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.lang-toggle:hover {
    background: var(--honey);
    color: var(--white);
}

.cart-btn {
    background: var(--honey);
    border: none;
    color: var(--white);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

.cart-btn:hover {
    opacity: 0.85;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 700px;
}

.hero-tagline {
    color: var(--honey);
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(5rem, 15vw, 10rem);
    color: var(--cream);
    letter-spacing: 10px;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--honey);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.hero-desc {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-paw {
    position: absolute;
    font-size: 20rem;
    opacity: 0.04;
    right: -3rem;
    bottom: -3rem;
    line-height: 1;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: var(--honey);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
}

.btn-primary:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--honey);
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border: 2px solid var(--honey);
    transition: all 0.2s;
}

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

/* ===== MARQUEE STRIP ===== */
.brand-strip {
    background: var(--honey);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee span {
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0 1.5rem;
    font-style: italic;
}

.marquee .sep {
    font-style: normal;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SHOP ===== */
.shop {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #777;
    font-size: 1rem;
    font-style: italic;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 24px;
    border: 2px solid var(--charcoal);
    background: transparent;
    color: var(--charcoal);
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s;
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* ===== PRODUCT CARD ===== */
.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.product-image {
    background: var(--light-gray);
    height: 320px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--honey);
    color: var(--white);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 500;
}

.color-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #ddd;
    margin-right: 4px;
    cursor: pointer;
    transition: outline 0.15s;
}

.color-dot.active-color {
    outline: 2px solid var(--charcoal);
    outline-offset: 2px;
}

/* Color tint overlay on product image when color is selected */
.product-image {
    position: relative;
    overflow: hidden;
}

.product-image.color-selected::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-tint, transparent);
    pointer-events: none;
    border-radius: inherit;
    transition: background 0.3s;
}

.product-info {
    padding: 1.2rem;
}

.product-colors {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-phrase {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
    font-style: italic;
}

.product-type {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

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

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--honey);
}

.add-to-cart {
    background: var(--charcoal);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.2s;
}

.add-to-cart:hover {
    background: var(--honey);
}

/* ===== HOVER OVERLAY ===== */
.product-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44,44,44,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.product-hover-overlay span {
    color: white;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid white;
    padding: 8px 20px;
    border-radius: 4px;
}
.product-card:hover .product-hover-overlay { opacity: 1; }

/* ===== REAL PEOPLE SECTION ===== */
.real-people {
    padding: 5rem 2rem;
    background: var(--light-gray);
}
.avatars-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
}
.avatar-card {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 2/3;
}
.avatar-card.avatar-wide {
    grid-column: span 2;
    aspect-ratio: 16/9;
}
.avatar-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s;
}
.avatar-card:hover img { transform: scale(1.04); }

/* ===== QUALITY PROMISE ===== */
.quality-promise {
    padding: 5rem 2rem;
    background: var(--charcoal);
}
.promise-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.promise-container h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--cream);
    margin-bottom: 1rem;
}
.promise-container > p {
    color: #aaa;
    margin-bottom: 3rem;
    font-size: 1rem;
}
.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.promise-item {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
}
.promise-icon { font-size: 2rem; margin-bottom: 1rem; }
.promise-item h3 {
    color: var(--honey);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.promise-item p { color: #aaa; font-size: 0.9rem; line-height: 1.7; }

/* ===== PRODUCT MODAL ===== */
.product-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 2999;
}
.product-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: white;
    border-radius: 16px;
    z-index: 3000;
    overflow-y: auto;
}
.product-modal.open,
.product-modal-overlay.open { display: block; }
.product-modal-content { position: relative; }
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--charcoal);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    z-index: 10;
}
.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.modal-image { height: 500px; overflow: hidden; border-radius: 16px 0 0 16px; }
.modal-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.modal-info { padding: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.modal-type {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--honey);
}
.modal-phrase {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--charcoal);
    font-style: italic;
    line-height: 1.3;
}
.modal-price { font-size: 1.8rem; font-weight: 700; color: var(--honey); }
.modal-option label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.6rem;
}
.modal-colors { display: flex; gap: 8px; margin-bottom: 4px; }
.color-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s;
}
.color-btn.selected { border-color: var(--honey); }
.selected-label { font-size: 0.85rem; color: #666; }
.modal-sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.size-btn {
    padding: 6px 14px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
}
.size-btn.selected, .size-btn:hover {
    border-color: var(--charcoal);
    background: var(--charcoal);
    color: white;
}
.modal-quality {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #666;
}
.modal-add-btn { width: 100%; padding: 14px; font-size: 1rem; margin-top: auto; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--charcoal);
    color: var(--cream);
    z-index: 9000;
    padding: 1rem 2rem;
    border-top: 3px solid var(--honey);
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}
.cookie-buttons { display: flex; gap: 0.8rem; align-items: center; }
.btn-cookie-accept {
    background: var(--honey);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
}
.btn-cookie-decline {
    background: transparent;
    color: #aaa;
    border: 1px solid #555;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
}
.cookie-link { color: var(--honey); font-size: 0.8rem; }

/* ===== CART ITEM IMAGE ===== */
.cart-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}
.cart-item-img {
    width: 60px;
    height: 75px;
    object-fit: cover;
    object-position: top;
    border-radius: 6px;
}
.cart-item-info { flex: 1; }
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.cart-item-remove {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 0.8rem;
}
.cart-item-remove:hover { color: #e55; }

/* ===== FOOTER LINKS ===== */
.footer-links {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}
.footer-links a { color: #888; text-decoration: none; font-size: 0.8rem; }
.footer-links a:hover { color: var(--honey); }

/* ===== PRIVACY SECTION ===== */
.privacy-section {
    background: var(--cream);
    padding: 4rem 2rem;
}
.privacy-container {
    max-width: 800px;
    margin: 0 auto;
}
.privacy-container h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
}
.privacy-container h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
    color: var(--honey);
}
.privacy-container p { color: #666; line-height: 1.7; margin-bottom: 0.5rem; }
.privacy-container a { color: var(--honey); }

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 900px) {
    .avatars-grid { grid-template-columns: repeat(2, 1fr); }
    .avatar-card.avatar-wide { grid-column: span 2; }
    .promise-grid { grid-template-columns: repeat(2, 1fr); }
    .modal-body { grid-template-columns: 1fr; }
    .modal-image { height: 300px; border-radius: 16px 16px 0 0; }
}
@media (max-width: 600px) {
    .avatars-grid { grid-template-columns: 1fr 1fr; }
    .promise-grid { grid-template-columns: 1fr; }
}

/* ===== ABOUT ===== */
.about {
    background: var(--charcoal);
    padding: 6rem 2rem;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-tagline {
    color: var(--honey) !important;
    font-size: 1.1rem !important;
    font-style: italic;
}

.big-paw {
    font-size: 8rem;
    opacity: 0.3;
}

/* ===== CONTACT ===== */
.contact {
    padding: 5rem 2rem;
    text-align: center;
    background: var(--cream);
}

.contact h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.contact p {
    color: #777;
    margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: #888;
    text-align: center;
    padding: 2rem;
    font-size: 0.85rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--honey);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

/* ===== CART MODAL ===== */
.cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
}

.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}

.cart-modal.open,
.cart-overlay.open {
    display: flex;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
}

.cart-header button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #999;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-empty {
    color: #aaa;
    text-align: center;
    margin-top: 3rem;
    font-style: italic;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.cart-item-name {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--charcoal);
}

.cart-item-type {
    font-size: 0.75rem;
    color: #aaa;
}

.cart-item-price {
    color: var(--honey);
    font-weight: 600;
    margin-left: 1rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
}

.cart-total {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: right;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .big-paw {
        display: none;
    }

    .cart-modal {
        width: 100%;
    }

    .hero-paw {
        font-size: 12rem;
    }
}

/* ===========================
   PAYPAL CHECKOUT MODAL
   =========================== */

.paypal-modal {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--cream);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 3000;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.paypal-modal.open { display: block; }

.paypal-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 2999;
}
.paypal-modal-overlay.open { display: block; }

.paypal-modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}
.paypal-modal-header .logo-paw { font-size: 2rem; }
.paypal-modal-header h2 {
    font-family: 'Playfair Display', serif;
    color: var(--charcoal);
    margin-top: 0.5rem;
}

.order-items { margin-bottom: 1rem; }

.order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.order-item-img {
    width: 60px; height: 60px;
    object-fit: cover;
    border-radius: 8px;
}
.order-item-info { flex: 1; }
.order-item-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal);
}
.order-item-details {
    font-size: 0.8rem;
    color: #888;
    margin-top: 2px;
}
.order-item-price {
    font-weight: 700;
    color: var(--honey);
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #666;
}
.order-total-row.total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    border-top: 2px solid var(--charcoal);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
}
.shipping-note { font-size: 0.8rem; color: #999; }

.paypal-divider {
    text-align: center;
    margin: 1.5rem 0 1rem;
    position: relative;
}
.paypal-divider::before {
    content: '';
    position: absolute;
    top: 50%; left: 0;
    width: 100%; height: 1px;
    background: rgba(0,0,0,0.15);
}
.paypal-divider span {
    background: var(--cream);
    padding: 0 1rem;
    position: relative;
    font-size: 0.85rem;
    color: #888;
}

#paypal-button-container { margin: 1rem 0; }

.paypal-note {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
}

/* ===========================
   SUCCESS MODAL
   =========================== */

.success-modal {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--cream);
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    z-index: 4000;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.success-modal.open { display: block; }

.success-icon { font-size: 4rem; margin-bottom: 1rem; }

.success-modal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}
.success-modal p { color: #555; line-height: 1.6; margin-bottom: 0.5rem; }
.success-sub { color: var(--honey); font-weight: 600; margin-bottom: 2rem !important; }

/* PayPal Direct Button */
.paypal-direct-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    background: #FFC439;
    color: #003087;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
    margin: 1rem 0 0.5rem;
}
.paypal-direct-btn:hover { background: #f0b429; }
.paypal-direct-note {
    text-align: center;
    font-size: 0.78rem;
    color: #888;
    line-height: 1.5;
    margin-top: 0.5rem;
}
/* ΓòÉΓòÉΓòÉ AUTH MODAL ΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉ */
.auth-overlay,.orders-overlay{position:fixed;inset:0;background:rgba(0,0,0,.75);z-index:1009;opacity:0;pointer-events:none;transition:opacity .25s}
.auth-overlay.open,.orders-overlay.open{opacity:1;pointer-events:all}
.auth-modal{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%) scale(.96);background:#1a1a1a;border:1px solid #333;border-radius:1rem;padding:2rem;width:90%;max-width:420px;z-index:1010;opacity:0;pointer-events:none;transition:opacity .25s,transform .25s}
.auth-modal.open{opacity:1;pointer-events:all;transform:translate(-50%,-50%) scale(1)}
.auth-modal-header{text-align:center;margin-bottom:1.5rem}
.auth-modal-header h2{font-family:'Playfair Display',serif;font-size:1.5rem;color:#f5f0eb;margin:.4rem 0 0}
.auth-tabs{display:flex;border-bottom:1px solid #2a2a2a;margin-bottom:1.5rem}
.auth-tab{flex:1;padding:.6rem;background:none;border:none;border-bottom:2px solid transparent;color:#777;cursor:pointer;font-size:.9rem;transition:color .2s,border-color .2s}
.auth-tab.active{color:#c8a96e;border-bottom-color:#c8a96e}
.auth-input{display:block;width:100%;padding:.75rem 1rem;background:#111;border:1px solid #333;border-radius:.5rem;color:#f5f0eb;font-size:.95rem;margin-bottom:.75rem;box-sizing:border-box;transition:border-color .2s}
.auth-input:focus{outline:none;border-color:#c8a96e}
.auth-error{color:#ef4444;font-size:.82rem;min-height:1.1em;margin-bottom:.5rem}
.auth-submit{width:100%;margin-bottom:1rem}
.btn-social{display:flex;align-items:center;justify-content:center;gap:.6rem;width:100%;padding:.7rem 1rem;border-radius:.5rem;font-size:.92rem;font-weight:500;cursor:pointer;margin-bottom:.6rem;transition:background .15s,box-shadow .15s;box-sizing:border-box}
.btn-google{background:#fff;border:1px solid #dadce0;color:#3c4043}
.btn-google:hover{background:#f8f9fa;box-shadow:0 1px 3px rgba(0,0,0,.15)}
.btn-microsoft{background:#fff;border:1px solid #8c8c8c;color:#3c4043}
.btn-microsoft:hover{background:#f3f3f3;box-shadow:0 1px 3px rgba(0,0,0,.15)}
.social-login-divider{display:flex;align-items:center;gap:.75rem;margin:.4rem 0 1rem;color:#666;font-size:.8rem}
.social-login-divider::before,.social-login-divider::after{content:'';flex:1;height:1px;background:#333}
.auth-switch{text-align:center;font-size:.82rem;color:#777}
.auth-switch a{color:#c8a96e;cursor:pointer}
.auth-note{text-align:center;font-size:.72rem;color:#555;margin-top:1.25rem}
.auth-success{text-align:center;padding:1rem 0;color:#f5f0eb}
.hidden{display:none !important}
/* ΓòÉΓòÉΓòÉ ACCOUNT BUTTON + DROPDOWN ΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉ */
.account-wrapper{position:relative}
.account-btn{background:none;border:1px solid #444;color:#f5f0eb;padding:.35rem .8rem;border-radius:2rem;cursor:pointer;font-size:.83rem;transition:border-color .2s,color .2s}
.account-btn:hover{border-color:#c8a96e;color:#c8a96e}
.account-menu{display:none;position:absolute;top:calc(100% + .5rem);right:0;background:#1a1a1a;border:1px solid #333;border-radius:.5rem;min-width:160px;z-index:300;overflow:hidden;box-shadow:0 8px 24px rgba(0,0,0,.5)}
.account-menu.open{display:block}
.account-menu-name{padding:.65rem 1rem;font-size:.8rem;color:#666;border-bottom:1px solid #2a2a2a;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.account-menu a{display:block;padding:.6rem 1rem;font-size:.88rem;color:#f5f0eb;cursor:pointer;transition:background .15s}
.account-menu a:hover{background:#252525;color:#c8a96e}
/* ΓòÉΓòÉΓòÉ MY ORDERS MODAL ΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉΓòÉ */
.orders-modal{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%) scale(.96);background:#1a1a1a;border:1px solid #333;border-radius:1rem;padding:2rem;width:90%;max-width:560px;max-height:80vh;overflow-y:auto;z-index:1010;opacity:0;pointer-events:none;transition:opacity .25s,transform .25s}
.orders-modal.open{opacity:1;pointer-events:all;transform:translate(-50%,-50%) scale(1)}
.orders-modal-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem}
.orders-modal-header h2{font-family:'Playfair Display',serif;font-size:1.4rem;color:#f5f0eb;margin:0}
.order-card{background:#111;border:1px solid #2a2a2a;border-radius:.6rem;padding:1rem;margin-bottom:1rem}
.order-card-header{display:flex;justify-content:space-between;margin-bottom:.75rem}
.order-date{font-size:.82rem;color:#666}
.order-status{font-size:.82rem;font-weight:600;text-transform:capitalize}
.order-line{display:flex;justify-content:space-between;gap:.5rem;font-size:.78rem;color:#aaa;padding:.2rem 0;flex-wrap:wrap}
.order-line-name{flex:1;min-width:140px}
.order-line-price{font-weight:600;color:#f5f0eb}
.order-card-footer{display:flex;justify-content:space-between;align-items:center;padding-top:.75rem;border-top:1px solid #2a2a2a;font-size:.82rem;color:#888}
.order-tracking{color:#c8a96e;text-decoration:none}
.order-tracking:hover{text-decoration:underline}
.orders-empty,.orders-loading{text-align:center;color:#666;padding:2.5rem 0}
