/* ===== RESET & BASE - Estilo Alchemy/Lover's ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --color-bg: #ffffff;
    --color-text: #1a1a1a;
    --color-text-light: #827f71;
    --color-border: #e8e8e1;
    --color-announcement: #b7b3a8;
    --color-accent: #b7b3a8;
    --font-body: 'Instrument Sans', 'Jost', Arial, Helvetica, sans-serif;
    --font-heading: 'Jost', 'Instrument Sans', Arial, Helvetica, sans-serif;
    --header-height: 60px;
    --announcement-height: 36px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

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

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background-color: var(--color-announcement);
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.4;
}
.announcement-bar p { margin: 0; }

/* ===== HERO SLIDESHOW ===== */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--header-height) - var(--announcement-height));
    min-height: 500px;
    overflow: hidden;
    background: #1a1a1a;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}
.hero-slide--active {
    opacity: 1;
    z-index: 2;
}

.hero-slide > img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    z-index: 3;
    padding: 20px;
    background: rgba(0,0,0,0.18);
}

.hero-slide__overlay h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-slide__overlay p {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.hero-slide__btn {
    display: inline-block;
    padding: 13px 40px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
}
.hero-slide__btn:hover {
    background: #fff;
    color: #000;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.3s;
    background: none;
}
.hero-arrow:hover { opacity: 1; }
.hero-arrow--prev { left: 16px; }
.hero-arrow--next { right: 16px; }

.hero-dots {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s;
    display: block;
}
.hero-dot--active {
    background: #fff;
}

@media (max-width: 768px) {
    .hero-slideshow { min-height: 70vh; }
    .hero-slide__overlay h2 { font-size: 1.8rem; }
    .hero-slide__overlay p { font-size: 0.9rem; }
    .hero-arrow { display: none; }
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    padding: 0 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-text);
}
.menu-toggle:hover { opacity: 0.7; }

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--color-text);
    white-space: nowrap;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.icon-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-text);
    position: relative;
}
.icon-btn:hover { opacity: 0.7; }

.cart-badge {
    position: absolute;
    top: 6px;
    right: 4px;
    background: var(--color-text);
    color: #fff;
    font-size: 0.6rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
    display: none;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 12px 20px;
}
.search-overlay.active { display: block; }

.search-overlay-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-overlay-inner input {
    flex: 1;
    border: 1px solid var(--color-border);
    padding: 10px 16px;
    font-size: 0.95rem;
    outline: none;
    border-radius: 0;
    background: transparent;
}
.search-overlay-inner input:focus {
    border-color: var(--color-text);
}

.search-overlay-inner button {
    font-size: 1.1rem;
    color: var(--color-text-light);
    padding: 8px;
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
    display: none;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 20px;
}
.mobile-nav.active { display: block; }

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav li { border-bottom: 1px solid var(--color-border); }
.mobile-nav li:last-child { border-bottom: none; }

.mobile-nav a {
    display: block;
    padding: 14px 0;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text);
    transition: opacity 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.active {
    opacity: 0.6;
}

/* ===== SECTION TITLE (like "Hello beauté" / "DERNIÈRES PÉPITES") ===== */
.greeting-section {
    padding: 40px 20px 10px;
    max-width: 1280px;
    margin: 0 auto;
}

.greeting-section h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.greeting-section p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

/* ===== MAIN CONTENT / PRODUCTS ===== */
.main-content {
    padding: 30px 0 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 20px;
    padding: 0;
}

.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
    flex-wrap: wrap;
    gap: 12px;
}

.products-count {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.toolbar-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.sort-select {
    border: 1px solid var(--color-border);
    padding: 8px 32px 8px 12px;
    font-size: 0.85rem;
    color: var(--color-text);
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23333'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
    border-radius: 0;
}

/* ===== PRODUCTS GRID (like Alchemy theme) ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ===== PRODUCT CARD (Alchemy style) ===== */
.product-card {
    cursor: pointer;
    transition: opacity 0.2s;
}
.product-card:hover { opacity: 0.95; }

.product-image {
    position: relative;
    padding-top: 133.33%;
    overflow: hidden;
    background: #f7f7f5;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease;
}

.product-image .hover-img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card:hover .hover-img {
    opacity: 1;
}
.product-card:hover .main-img {
    opacity: 0;
}

.product-info {
    padding: 12px 4px 20px;
}

.product-vendor {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 4px;
    font-weight: 400;
}

.product-name {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 6px;
    color: var(--color-text);
}

.product-name a {
    color: inherit;
    text-decoration: none;
}

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

.product-price .current {
    font-weight: 400;
}

.product-price .original {
    text-decoration: line-through;
    color: var(--color-text-light);
    font-size: 0.85rem;
    margin-left: 6px;
}

.product-price .discount {
    color: #c0392b;
    font-size: 0.8rem;
    margin-left: 6px;
}

/* Hidden badges, actions overlays - NO fancy hover effects like Alchemy */
.product-badges { display: none; }
.product-actions { display: none; }
.quick-add-btn { display: none; }

/* ===== "VER TODO" BUTTON ===== */
.see-all-btn {
    display: block;
    text-align: center;
    margin: 40px auto 0;
}

.see-all-btn a,
.btn-alt {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid var(--color-text);
    color: var(--color-text);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
}

.btn-alt:hover {
    background: var(--color-text);
    color: #fff;
}

/* ===== FOOTER (Alchemy style - simple) ===== */

/* ===== DISCOVER BANNER ===== */
.discover-banner {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.discover-banner__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text);
    padding: 14px 40px;
    border: 1px solid var(--color-text);
    transition: all 0.3s ease;
}

.discover-banner__link:hover {
    background: var(--color-text);
    color: #fff;
}

/* ===== INFO SECTION ===== */
.info-section {
    padding: 60px 0;
    background: #f9f8f5;
    border-top: 1px solid var(--color-border);
}

.info-section__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-text);
}

.info-section__grid {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.info-item__icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    line-height: 1.6;
}

.info-item p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.info-item a {
    color: var(--color-text);
    text-decoration: underline;
}

.info-section__thanks {
    text-align: center;
    margin-top: 40px;
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.instagram-section h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.instagram-section p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

.instagram-section p a {
    color: var(--color-text);
    font-weight: 600;
}

.instagram-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    background: var(--color-text);
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.instagram-section__btn:hover {
    background: #333;
    transform: translateY(-2px);
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
    padding: 60px 0;
    background: #f9f8f5;
    border-top: 1px solid var(--color-border);
}

.founder-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.founder-section__image {
    border-radius: 4px;
    overflow: hidden;
}

.founder-section__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.founder-section__text h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 18px;
}

.founder-section__text p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 14px;
}

.founder-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 12px 28px;
    background: var(--color-text);
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.founder-section__btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.footer {
    border-top: 1px solid var(--color-border);
    padding: 40px 0 20px;
}

.footer-personal {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.footer-personal a {
    color: var(--color-text);
    text-decoration: underline;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    font-size: 0.85rem;
}

.footer-links a {
    color: var(--color-text-light);
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--color-text); }

.footer-links span {
    color: var(--color-border);
}

.footer-bottom-line {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
    font-size: 0.75rem;
    color: var(--color-text-light);
}

/* ===== LOADING SPINNER ===== */
.loading-spinner {
    text-align: center;
    padding: 60px 0;
}

.spinner {
    width: 32px;
    height: 32px;
    border: 2px solid var(--color-border);
    border-top: 2px solid var(--color-text);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

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

.no-products {
    text-align: center;
    padding: 60px 0;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ===== CART SIDEBAR ===== */
.cart-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2000;
}
.cart-overlay.active { display: block; }

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    max-width: 90vw;
    height: 100%;
    background: var(--color-bg);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
}
.cart-sidebar.active { right: 0; }

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--color-border);
}

.cart-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cart-close {
    font-size: 1.2rem;
    color: var(--color-text);
    padding: 4px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.cart-item-image {
    width: 70px;
    flex-shrink: 0;
}

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

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

.cart-item-name {
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 4px;
}

.cart-item-meta {
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-bottom: 6px;
}

.cart-item-price {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-qty button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--color-text);
}

.cart-item-qty span {
    font-size: 0.85rem;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    color: var(--color-text-light);
    font-size: 0.8rem;
    align-self: flex-start;
    padding: 4px;
}
.cart-item-remove:hover { color: #c0392b; }

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 12px;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.cart-empty i { font-size: 2rem; opacity: 0.3; }

.btn-simple {
    font-size: 0.85rem;
    text-decoration: underline;
    color: var(--color-text);
}

.cart-footer {
    border-top: 1px solid var(--color-border);
    padding: 20px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.btn-dark {
    display: inline-block;
    background: var(--color-text);
    color: #fff;
    padding: 14px 24px;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    border: 1px solid var(--color-text);
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
    width: auto;
}
.btn-dark:hover {
    background: transparent;
    color: var(--color-text);
}

.btn-outline-dark {
    display: inline-block;
    background: transparent;
    color: var(--color-text);
    padding: 12px 24px;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: border-color 0.3s;
    cursor: pointer;
    margin-top: 8px;
}
.btn-outline-dark:hover { border-color: var(--color-text); }

.btn-block { display: block; width: 100%; }

/* ===== MODALS ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 3000;
    overflow-y: auto;
    padding: 40px 20px;
}
.modal.active { display: flex; align-items: flex-start; justify-content: center; }

.modal-content {
    background: var(--color-bg);
    width: 100%;
    max-width: 900px;
    position: relative;
    margin: auto;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 1.2rem;
    color: var(--color-text);
    z-index: 10;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Product Modal */
.product-modal-content { max-width: 900px; }

.product-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

@media (max-width: 768px) {
    .product-modal-grid { grid-template-columns: 1fr; }
}

.product-modal-gallery { background: #f7f7f5; }

.modal-main-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: contain;
}

.product-modal-info {
    padding: 30px;
}

.product-modal-info .product-category {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-light);
    display: block;
    margin-bottom: 8px;
}

.product-modal-info h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 16px;
}

.product-price-modal {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.product-price-modal .current-price { font-weight: 400; }
.product-price-modal .original-price {
    text-decoration: line-through;
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-left: 8px;
}
.product-price-modal .discount-badge {
    color: #c0392b;
    font-size: 0.85rem;
    margin-left: 8px;
}

.product-description {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

.product-options { margin-bottom: 24px; }

.option-group {
    margin-bottom: 16px;
}

.option-group label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--color-text-light);
}

.size-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-option {
    min-width: 44px;
    height: 36px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0 12px;
}
.size-option.selected, .size-option:hover {
    border-color: var(--color-text);
    background: var(--color-text);
    color: #fff;
}

.color-options {
    display: flex;
    gap: 8px;
}

.color-option {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s;
}
.color-option.selected, .color-option:hover {
    border-color: var(--color-text);
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    width: fit-content;
}

.qty-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--color-text);
}

.quantity-selector input {
    width: 44px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    height: 36px;
    font-size: 0.9rem;
    outline: none;
    -moz-appearance: textfield;
}
.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.product-actions-modal { margin-bottom: 16px; }

.btn-wishlist-modal {
    font-size: 0.8rem;
    color: var(--color-text-light);
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-wishlist-modal:hover { color: var(--color-text); }

/* ===== CHECKOUT MODAL ===== */
.checkout-modal-content {
    max-width: 600px;
    padding: 30px;
}

.checkout-header {
    margin-bottom: 24px;
}

.checkout-header h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.checkout-form label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--color-text-light);
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    font-size: 0.9rem;
    outline: none;
    border-radius: 0;
    background: transparent;
}
.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
    border-color: var(--color-text);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group { margin-bottom: 16px; }

@media (max-width: 480px) {
    .form-row { grid-template-columns: 1fr; }
}

/* Checkout Summary */
.checkout-summary { margin-bottom: 24px; }

.summary-items { margin-bottom: 16px; }

.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
}

.summary-item-image {
    width: 50px;
    flex-shrink: 0;
}

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

.summary-item-details { flex: 1; }

.summary-item-name {
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.summary-item-meta {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

.summary-item-price {
    font-size: 0.85rem;
    font-weight: 500;
}

.summary-totals { margin-bottom: 16px; }

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
}
.summary-row.total {
    font-weight: 600;
    font-size: 1rem;
    border-top: 1px solid var(--color-border);
    padding-top: 12px;
    margin-top: 6px;
}

.shipping-summary {
    font-size: 0.85rem;
    color: var(--color-text-light);
    padding: 12px;
    background: #fafaf9;
    margin-bottom: 16px;
}

.payment-section { margin-top: 16px; }

.payment-section p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

/* QR Payment */
.qr-payment-container {
    text-align: center;
    padding: 20px 0;
}

.qr-box { margin-bottom: 20px; }

.qr-amount {
    font-size: 1rem;
    margin-top: 12px;
}
.qr-amount strong { font-size: 1.2rem; }

.qr-instructions {
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.qr-instructions ol {
    padding-left: 20px;
    list-style: decimal;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 16px;
}
.qr-instructions ol li { margin-bottom: 4px; }

.qr-loading {
    padding: 40px;
    text-align: center;
}
.qr-loading p {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.payment-status { text-align: center; margin-top: 16px; }

.status-waiting {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #48bb78;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Success */
.success-container {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 3rem;
    color: #48bb78;
    margin-bottom: 16px;
}

.success-container h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.success-container p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.order-details {
    background: #fafaf9;
    padding: 16px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 5000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    min-width: 280px;
    max-width: 400px;
    animation: slideInRight 0.3s ease;
}

.toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #fff;
    flex-shrink: 0;
}

.toast.success .toast-icon { background: #48bb78; }
.toast.error .toast-icon { background: #e53e3e; }
.toast.info .toast-icon { background: var(--color-accent); }

.toast-content { flex: 1; }
.toast-title { font-size: 0.8rem; font-weight: 600; margin-bottom: 2px; }
.toast-message { font-size: 0.8rem; color: var(--color-text-light); }

.toast-close {
    font-size: 0.85rem;
    color: var(--color-text-light);
    padding: 4px;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .founder-section__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .founder-section__image img {
        height: 300px;
    }
    .info-section {
        padding: 40px 0;
    }
    .info-section__title {
        font-size: 1rem;
        margin-bottom: 28px;
    }
    .instagram-section {
        padding: 40px 0;
    }
    .founder-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .logo { font-size: 1.05rem; }
    .section-title { font-size: 1.2rem; }
    .products-toolbar { flex-direction: column; align-items: flex-start; }
    .footer-links { flex-direction: column; gap: 8px; }
    .footer-links span { display: none; }
    .checkout-modal-content { padding: 20px; }
    .product-modal-info { padding: 20px; }
    .discover-banner__link {
        padding: 12px 28px;
        font-size: 0.85rem;
    }
    .founder-section__image img {
        height: 250px;
    }
}
