/* ==========================================
   COVE - Stylesheet V1
   Design: Minimaliste, Moderne, Streetwear
   ========================================== */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #000000;
    --color-text: #ffffff;
    --color-text-muted: #888888;
    --color-accent: #ffffff;
    --color-border: #222222;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   Header & Navigation
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.5rem 3rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    height: 70px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
}

.nav-left, .nav-right {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.nav-link:hover {
    color: var(--color-text);
}

.logo {
    position: relative;
    width: 150px;
    height: 60px;
}

.logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.logo img {
    height: 140px;
    width: auto;
    filter: invert(1) brightness(2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

/* ==========================================
   Buttons
   ========================================== */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-text);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--color-text);
    color: var(--color-bg);
}

/* ==========================================
   Marquee
   ========================================== */
.marquee {
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 4rem;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--color-text-muted);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================
   Section Headers
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ==========================================
   Collection / Products
   ========================================== */
.collection {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    cursor: pointer;
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #111;
    margin-bottom: 1rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    text-align: center;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.product-price {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

/* ==========================================
   Lookbook
   ========================================== */
.lookbook {
    padding: 6rem 3rem;
    background: #050505;
}

.lookbook-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    height: 80vh;
}

.lookbook-item {
    overflow: hidden;
}

.lookbook-item.large {
    grid-row: span 2;
}

.lookbook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lookbook-item:hover img {
    transform: scale(1.03);
}

/* ==========================================
   About Section
   ========================================== */
.about {
    padding: 8rem 3rem;
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--color-text-muted);
}

/* ==========================================
   Newsletter
   ========================================== */
.newsletter {
    padding: 5rem 3rem;
    background: #0a0a0a;
    text-align: center;
}

.newsletter-content {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.newsletter-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.9rem;
}

.newsletter-input::placeholder {
    color: var(--color-text-muted);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-text);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    padding: 4rem 3rem 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.footer-logo-img {
    height: 180px;
    width: auto;
    filter: invert(1) brightness(2);
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

.footer-credit {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    margin-top: 0.8rem;
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 5rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.footer-column a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-column a:hover {
    color: var(--color-text);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}

/* ==========================================
   Contact Page
   ========================================== */
.contact-hero {
    padding: 10rem 3rem 4rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
}

.contact-section {
    padding: 5rem 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-text);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    align-self: flex-start;
    margin-top: 1rem;
}

.form-status {
    padding: 0.8rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.form-status.form-success,
.form-status.form-error {
    display: block;
}

.form-status.form-success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-status.form-error {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.contact-info {
    padding-top: 1rem;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.info-block p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.nav-link.active {
    color: var(--color-text);
}

/* ==========================================
   Shop Page
   ========================================== */
.shop-hero {
    padding: 10rem 3rem 4rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.shop-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.shop-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
}

.shop-section {
    padding: 4rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.shop-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-family: inherit;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--color-text);
    color: var(--color-text);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(2, 300px);
    gap: 3rem;
    justify-content: center;
}

.shop-card {
    cursor: pointer;
}

.shop-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #111;
    margin-bottom: 1rem;
}

.shop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.shop-card:hover .shop-card-image img {
    transform: scale(1.05);
}

/* overlay defini plus bas dans la section Shop Size Selector */

.btn-add-cart {
    width: 100%;
    align-self: stretch;
    padding: 0.8rem;
    background: var(--color-text);
    color: var(--color-bg);
    border: none;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-cart:hover {
    background: #ddd;
}

.btn-add-cart:disabled {
    background: #555;
    color: #999;
    cursor: not-allowed;
}

.shop-card.out-of-stock .shop-card-image img {
    opacity: 0.5;
}

.shop-card.out-of-stock .shop-card-overlay {
    transform: translateY(0);
}

.stock-badge {
    display: block;
    text-align: center;
    background: #cc0000;
    color: #fff;
    padding: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.shop-card-info {
    text-align: center;
}

.shop-card-name {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.shop-card-price {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    background: var(--color-text);
    color: var(--color-bg);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.cart-notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* ==========================================
   Cart Page
   ========================================== */
.cart-hero {
    padding: 10rem 3rem 4rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.cart-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.cart-section {
    padding: 4rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 50vh;
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 1.5rem;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    background: #111;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-item-quantity button {
    width: 30px;
    height: 30px;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-quantity button:hover {
    border-color: var(--color-text);
}

.cart-item-quantity span {
    font-size: 0.95rem;
    min-width: 20px;
    text-align: center;
}

.cart-item-total {
    font-weight: 600;
    min-width: 80px;
    text-align: right;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: var(--color-text);
}

.cart-summary {
    background: #0a0a0a;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.summary-row.total {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    margin-top: 1.5rem;
    background: var(--color-text);
    color: var(--color-bg);
    border: none;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-checkout:hover {
    background: #ddd;
}

.btn-continue {
    display: block;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-decoration: underline;
}

.btn-continue:hover {
    color: var(--color-text);
}

.cart-empty {
    text-align: center;
    padding: 4rem;
}

.cart-empty p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* ==========================================
   Checkout Modal
   ========================================== */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
    padding: 2rem;
    overflow-y: auto;
}

.checkout-modal.active {
    opacity: 1;
    visibility: visible;
}

.checkout-content {
    background: #0a0a0a;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.checkout-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 2rem;
    cursor: pointer;
}

.checkout-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.checkout-section {
    margin-bottom: 2rem;
}

.checkout-section h3 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkout-content .form-group {
    margin-bottom: 1rem;
}

.checkout-content .form-group label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.checkout-content .form-group input,
.checkout-content .form-group select {
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.9rem;
}

.checkout-content .form-group input:focus,
.checkout-content .form-group select:focus {
    outline: none;
    border-color: var(--color-text);
}

.checkout-content .form-group select {
    cursor: pointer;
}

.payment-info {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.payment-placeholder {
    padding: 2rem;
    border: 1px dashed var(--color-border);
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* Promo Code */
.promo-code-row {
    display: flex;
    gap: 0.5rem;
}

.promo-code-row input {
    flex: 1;
    padding: 0.7rem 1rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.promo-code-row input::placeholder {
    text-transform: none;
}

.promo-code-row input:disabled {
    opacity: 0.6;
}

.btn-apply-promo {
    padding: 0.7rem 1.2rem;
    background: var(--color-text);
    color: var(--color-bg);
    border: none;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-apply-promo:hover {
    background: #ddd;
}

.promo-message {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    min-height: 1.2em;
}

.promo-success {
    color: #4caf50;
}

.promo-error {
    color: #f44336;
}

.checkout-total {
    padding: 1.5rem 0;
    border-top: 1px solid var(--color-border);
    margin-top: 1rem;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    padding: 0.3rem 0;
}

.checkout-total-final {
    font-size: 1.2rem;
    font-weight: 600;
    padding-top: 0.8rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--color-border);
}

.promo-discount-row {
    color: #4caf50;
}

.btn-pay {
    width: 100%;
    padding: 1.2rem;
    background: var(--color-text);
    color: var(--color-bg);
    border: none;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-pay:hover {
    background: #ddd;
}

/* ==========================================
   Confirmation Modal
   ========================================== */
.confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 3000;
}

.confirmation-modal.active {
    opacity: 1;
    visibility: visible;
}

.confirmation-content {
    text-align: center;
    padding: 3rem;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
}

.confirmation-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.confirmation-content p {
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.order-number {
    font-size: 1.1rem;
    color: var(--color-text);
    margin: 1.5rem 0 2rem;
}

/* ==========================================
   Success / Cancel Page
   ========================================== */
.success-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.success-container {
    text-align: center;
    max-width: 500px;
}

.success-container h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.success-container p {
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.success-container .order-number {
    font-size: 1.1rem;
    color: var(--color-text);
    margin: 1.5rem 0 2rem;
}

.success-container .btn-primary {
    margin-top: 1.5rem;
}

.cancel-icon {
    width: 80px;
    height: 80px;
    border: 2px solid #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    color: #ef4444;
}

.pending-icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 2rem;
    color: var(--color-text-muted);
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.payment-status {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 1px solid var(--color-text);
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
    background: var(--color-text);
    color: var(--color-bg);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-grid {
        grid-template-columns: repeat(2, 280px);
        justify-content: center;
    }

    .cart-container {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .lookbook-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .lookbook-item.large {
        grid-row: span 1;
    }

    .lookbook-item {
        height: 50vh;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 1.5rem;
    }

    .nav-left, .nav-right {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .collection, .lookbook, .about {
        padding: 4rem 1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-hero {
        padding: 8rem 1.5rem 3rem;
    }

    .contact-section {
        padding: 3rem 1.5rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .shop-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 300px;
        margin: 0 auto;
    }

    .shop-hero, .cart-hero {
        padding: 8rem 1.5rem 3rem;
    }

    .shop-title, .cart-title {
        font-size: 2rem;
    }

    .shop-section, .cart-section {
        padding: 3rem 1.5rem;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }

    .cart-item-quantity,
    .cart-item-total {
        grid-column: 2;
    }

    .cart-item-remove {
        position: absolute;
        top: 0;
        right: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* ==========================================
   About Page
   ========================================== */

.about-hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(180deg, #111 0%, #000 100%);
}

.about-hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* Story Section */
.about-story {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.story-container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.story-section {
    position: relative;
    padding-left: 2rem;
    border-left: 1px solid var(--color-border);
}

.story-year {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--color-border);
}

.story-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.story-text:last-child {
    margin-bottom: 0;
}

/* Values Section */
.about-values {
    padding: 6rem 2rem;
    background: #0a0a0a;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.value-card {
    padding: 2.5rem;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--color-text-muted);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-text {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Quote Section */
.about-quote {
    padding: 8rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-quote blockquote {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.about-quote cite {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-style: normal;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .about-hero {
        min-height: 40vh;
        padding: 6rem 1.5rem 3rem;
    }

    .about-story {
        padding: 4rem 1.5rem;
    }

    .story-section {
        padding-left: 1.5rem;
    }

    .story-title {
        font-size: 1.5rem;
    }

    .story-text {
        font-size: 1rem;
    }

    .values-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .value-card {
        padding: 2rem;
    }

    .about-quote {
        padding: 5rem 1.5rem;
    }
}

/* ==========================================
   Legal Pages (CGV, Mentions, Confidentialite, Retours)
   ========================================== */

.legal-hero {
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(180deg, #111 0%, #000 100%);
}

.legal-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.legal-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

.legal-content {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.legal-section {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section.highlight {
    background: #0a0a0a;
    padding: 2rem;
    border: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.legal-section ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.legal-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    background: var(--color-text-muted);
    border-radius: 50%;
}

.legal-section a {
    color: var(--color-text);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-section a:hover {
    color: var(--color-text-muted);
}

.legal-section strong {
    color: var(--color-text);
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
    .legal-hero {
        min-height: 30vh;
        padding: 6rem 1.5rem 3rem;
    }

    .legal-content {
        padding: 3rem 1.5rem;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }

    .legal-section.highlight {
        padding: 1.5rem;
    }
}

/* ==========================================
   Product Page
   ========================================== */

.product-page {
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
}

.product-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #111;
    margin-bottom: 1rem;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-main-image:hover img {
    transform: scale(1.05);
}

.product-thumbnails {
    display: flex;
    gap: 0.5rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: var(--color-text);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info {
    padding: 1rem 0;
}

.product-breadcrumb {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.product-breadcrumb a {
    color: var(--color-text-muted);
    transition: var(--transition);
}

.product-breadcrumb a:hover {
    color: var(--color-text);
}

.product-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.product-description {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.product-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

/* Product Details */
.product-details {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.detail-value {
    font-size: 0.9rem;
    color: var(--color-text);
}

/* Size Selector */
.product-size {
    margin-bottom: 2rem;
}

.size-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.size-options {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.size-btn {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.size-btn:hover {
    border-color: var(--color-text);
}

.size-btn.active {
    background: var(--color-text);
    color: var(--color-bg);
    border-color: var(--color-text);
}

.size-guide-link {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.size-guide-link:hover {
    color: var(--color-text);
}

.size-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

/* Add to Cart Button */
.product-actions {
    margin-bottom: 2rem;
}

.btn-add-to-cart {
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--color-text);
    color: var(--color-bg);
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-add-to-cart:hover {
    background: var(--color-text-muted);
}

.btn-add-to-cart.disabled,
.btn-add-to-cart:disabled {
    background: #555;
    color: #999;
    cursor: not-allowed;
}

.size-btn.size-unavailable {
    opacity: 0.3;
    text-decoration: line-through;
    cursor: not-allowed;
}

/* Extra Info */
.product-extra-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.extra-icon {
    font-size: 1rem;
}

/* Accordion */
.product-accordion {
    border-top: 1px solid var(--color-border);
}

.accordion-item {
    border-bottom: 1px solid var(--color-border);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--color-text-muted);
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: 300;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.accordion-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

.accordion-content a {
    color: var(--color-text);
    text-decoration: underline;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--color-text);
    color: var(--color-bg);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.cart-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.notification-icon {
    font-size: 1.2rem;
}

/* Product Page Responsive */
@media (max-width: 992px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-gallery {
        position: static;
    }

    .product-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .product-page {
        padding: 6rem 1rem 3rem;
    }

    .product-title {
        font-size: 1.75rem;
    }

    .product-price {
        font-size: 1.25rem;
    }

    .size-btn {
        width: 45px;
        height: 45px;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }
}

/* Shop Card Link */
.shop-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.shop-card-link:hover .shop-card-image img {
    transform: scale(1.05);
}

.shop-card-link .shop-card-image {
    overflow: hidden;
}

.shop-card-link .shop-card-image img {
    transition: transform 0.5s ease;
}

/* Quick Add Overlay */
.shop-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shop-card-image {
    position: relative;
    overflow: hidden;
}

.shop-card:hover .shop-card-overlay {
    transform: translateY(0);
}

.btn-quick-add {
    background: var(--color-text);
    color: var(--color-bg);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
}

.btn-quick-add:hover {
    background: var(--color-text-muted);
}

/* Quick Notification */
.quick-notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--color-text);
    color: var(--color-bg);
    padding: 1rem 2rem;
    font-size: 0.95rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Shop Size Selector (overlay) */
.shop-size-selector {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.shop-size-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #666;
    background: transparent;
    color: #fff;
    font-family: inherit;
    font-size: 0.7rem;
    cursor: pointer;
    transition: var(--transition);
}

.shop-size-btn:hover {
    border-color: #fff;
}

.shop-size-btn.active {
    border-color: #fff;
    background: #fff;
    color: #000;
}

.shop-size-btn:disabled,
.shop-size-btn.size-unavailable {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Shop Toolbar (search + sort) */
.shop-toolbar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

#shop-search {
    padding: 0.7rem 1rem;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.85rem;
    width: 250px;
    transition: var(--transition);
}

#shop-search::placeholder {
    color: var(--color-text-muted);
}

#shop-search:focus {
    outline: none;
    border-color: var(--color-text);
}

#shop-sort {
    padding: 0.7rem 1rem;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

#shop-sort:focus {
    outline: none;
    border-color: var(--color-text);
}

#shop-sort option {
    background: #111;
    color: var(--color-text);
}


/* ==========================================
   Language Selector
   ========================================== */
.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.language-selector span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.language-options {
    display: flex;
    gap: 0.75rem;
}

.language-options a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.5rem;
    border: 1px solid transparent;
    transition: var(--transition);
}

.language-options a:hover {
    color: var(--color-text);
}

.language-options a.active {
    color: var(--color-text);
    border-color: var(--color-text);
}

/* ==========================================
   Admin Dashboard
   ========================================== */
.admin-section {
    padding: 3rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    background: #0a0a0a;
    border: 1px solid var(--color-border);
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.admin-clients {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.client-card {
    background: #0a0a0a;
    border: 1px solid var(--color-border);
    padding: 2rem;
}

.client-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.client-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.client-email {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.client-orders {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.order-row {
    padding: 1rem;
    border: 1px solid var(--color-border);
    background: #111;
}

.order-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.order-number {
    font-weight: 600;
    font-size: 0.95rem;
}

.order-date {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.order-total {
    font-size: 0.95rem;
    font-weight: 500;
}

.order-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.status-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #000;
    border-radius: 3px;
}

.status-select {
    padding: 0.4rem 0.6rem;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.8rem;
    cursor: pointer;
}

.status-select:focus {
    outline: none;
    border-color: var(--color-text);
}

.status-select option {
    background: #111;
    color: var(--color-text);
}

.order-items {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.order-item-pill {
    padding: 0.25rem 0.6rem;
    background: #1a1a1a;
    border: 1px solid var(--color-border);
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Access Denied */
.access-denied-content {
    text-align: center;
    padding: 4rem 2rem;
}

.access-denied-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.access-denied-content p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* Client Card Enhancements */
.client-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.client-meta {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}

.client-separator {
    margin: 0 0.5rem;
    opacity: 0.5;
}

.client-last-login {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.last-login-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.last-login-value {
    font-size: 0.9rem;
    color: var(--color-text);
}

/* Admin Responsive */
@media (max-width: 768px) {
    .admin-stats {
        grid-template-columns: 1fr;
    }

    .admin-section {
        padding: 2rem 1.5rem;
    }

    .client-card {
        padding: 1.5rem;
    }

    .client-header {
        flex-direction: column;
        gap: 1rem;
    }

    .client-last-login {
        text-align: left;
    }

    .client-meta {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .client-separator {
        display: none;
    }

    .order-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .order-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================
   Account Page (Login / Register / Profile)
   ========================================== */
.auth-hero {
    padding: 10rem 3rem 4rem;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.auth-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.auth-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
}

.auth-section {
    padding: 4rem 3rem;
    max-width: 500px;
    margin: 0 auto;
}

.auth-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.auth-tab {
    padding: 0.7rem 1.5rem;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-family: inherit;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.auth-tab:hover,
.auth-tab.active {
    border-color: var(--color-text);
    color: var(--color-text);
}

.auth-form {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
}

.auth-form.active {
    display: flex;
}

.auth-error {
    font-size: 0.85rem;
    color: #e74c3c;
    min-height: 1.2em;
}

.auth-success {
    font-size: 0.85rem;
    color: #27ae60;
    min-height: 1.2em;
}

.forgot-password-link {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    transition: var(--transition);
}

.forgot-password-link:hover {
    color: var(--color-text);
}

.forgot-password-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.profile-section {
    padding: 4rem 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.profile-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.profile-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.profile-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.profile-value {
    font-size: 1rem;
    color: var(--color-text);
}

.btn-logout {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #e74c3c;
    border: 1px solid #e74c3c;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-logout:hover {
    background: #e74c3c;
    color: var(--color-bg);
}

/* Account Page Responsive */
@media (max-width: 768px) {
    .auth-hero {
        padding: 8rem 1.5rem 3rem;
    }

    .auth-title {
        font-size: 2rem;
    }

    .auth-section {
        padding: 3rem 1.5rem;
    }

    .profile-section {
        padding: 3rem 1.5rem;
    }

    .profile-info {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Orders Section (Account Page)
   ========================================== */
.orders-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.orders-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.orders-loading,
.orders-empty {
    font-size: 1rem;
    color: var(--color-text-muted);
    text-align: center;
    padding: 2rem;
}

.order-card {
    background: #0a0a0a;
    border: 1px solid var(--color-border);
    padding: 1.5rem;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.order-card .order-number {
    font-size: 1rem;
    font-weight: 600;
}

.order-card .order-date {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.order-status {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 3px;
}

.status-pending {
    background: #f39c12;
    color: #000;
}

.status-confirmed {
    background: #3498db;
    color: #fff;
}

.status-processing {
    background: #9b59b6;
    color: #fff;
}

.status-shipped {
    background: #1abc9c;
    color: #000;
}

.status-delivered {
    background: #27ae60;
    color: #fff;
}

.status-cancelled {
    background: #e74c3c;
    color: #fff;
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.order-product {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.order-product .product-name {
    flex: 1;
    color: var(--color-text);
}

.order-product .product-qty {
    margin: 0 1rem;
    color: var(--color-text-muted);
}

.order-product .product-price {
    font-weight: 500;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.order-total-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.order-card .order-total {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Orders Responsive */
@media (max-width: 768px) {
    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .order-product {
        flex-wrap: wrap;
    }

    .order-product .product-name {
        width: 100%;
        margin-bottom: 0.25rem;
    }
}

/* Order Detail Modal (compte.html) */
.order-card.clickable {
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.order-card.clickable:hover {
    border-color: var(--color-text-muted);
}

.order-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
    padding: 2rem;
    overflow-y: auto;
}

.order-detail-modal.active {
    opacity: 1;
    visibility: visible;
}

.order-detail-content {
    background: #0a0a0a;
    padding: 3rem;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.order-detail-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 2rem;
    cursor: pointer;
}

.order-detail-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.order-detail-date {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.order-detail-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.order-detail-section:last-child {
    border-bottom: none;
}

.order-detail-section h3 {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

/* Status Timeline */
.status-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--color-border);
}

.timeline-item {
    position: relative;
    padding-left: 1rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.75rem;
    top: 0.4rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
}

.timeline-item.current::before {
    background: #27ae60;
}

.timeline-status {
    font-size: 0.9rem;
    font-weight: 500;
}

.timeline-date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.timeline-comment {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Order Detail Items */
.detail-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.detail-item-row:last-child {
    border-bottom: none;
}

.detail-item-name {
    flex: 1;
}

.detail-item-size {
    color: var(--color-text-muted);
    margin: 0 1rem;
    font-size: 0.9rem;
}

.detail-item-qty {
    color: var(--color-text-muted);
    margin-right: 1rem;
    font-size: 0.9rem;
}

.detail-item-price {
    font-weight: 500;
    min-width: 80px;
    text-align: right;
}

/* Order Detail Address */
.detail-address p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Order Detail Totals */
.detail-totals {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.detail-total-row.final {
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--color-border);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
}

.detail-total-row.discount {
    color: #4caf50;
}

/* ==========================================
   Admin Tabs & Extended Styles
   ========================================== */

/* Admin Tabs */
.admin-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    flex-wrap: wrap;
}

.admin-tab {
    padding: 0.7rem 1.5rem;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-family: inherit;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.admin-tab:hover,
.admin-tab.active {
    border-color: var(--color-text);
    color: var(--color-text);
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
}

/* Admin Filter Bar */
.admin-filter-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.admin-filter-input {
    flex: 1;
    min-width: 200px;
    padding: 0.8rem 1rem;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.9rem;
}

.admin-filter-input::placeholder {
    color: var(--color-text-muted);
}

.admin-filter-input:focus {
    outline: none;
    border-color: var(--color-text);
}

.admin-filter-select {
    padding: 0.8rem 1rem;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
}

.admin-filter-select:focus {
    outline: none;
    border-color: var(--color-text);
}

.admin-filter-select option {
    background: #111;
    color: var(--color-text);
}

/* Admin Table (Products) */
.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
}

.admin-table th {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.admin-table tbody tr:hover {
    background: #111;
}

.admin-product-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    background: #111;
}

.btn-admin-action {
    padding: 0.4rem 0.8rem;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    margin-right: 0.5rem;
}

.btn-admin-action:hover {
    border-color: var(--color-text);
}

.btn-admin-danger {
    color: #e74c3c;
    border-color: #e74c3c;
}

.btn-admin-danger:hover {
    background: #e74c3c;
    color: #fff;
}

/* Admin Modal */
.admin-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
    padding: 2rem;
    overflow-y: auto;
}

.admin-modal.active {
    opacity: 1;
    visibility: visible;
}

.admin-modal-content {
    background: #0a0a0a;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.admin-modal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.admin-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 2rem;
    cursor: pointer;
}

.admin-modal-content .form-group {
    margin-bottom: 1rem;
}

.admin-modal-content .form-group label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-modal-content .form-group input,
.admin-modal-content .form-group select,
.admin-modal-content .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.9rem;
}

.admin-modal-content .form-group input:focus,
.admin-modal-content .form-group select:focus,
.admin-modal-content .form-group textarea:focus {
    outline: none;
    border-color: var(--color-text);
}

.admin-modal-content .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Size Stock Grid */
.size-stock-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.size-stock-grid > div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.size-stock-grid label {
    font-size: 0.8rem;
    text-align: center;
    color: var(--color-text-muted);
}

.size-stock-grid input {
    text-align: center;
    padding: 0.6rem;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.9rem;
}

.size-stock-grid input:focus {
    outline: none;
    border-color: var(--color-text);
}

/* Admin Form Messages */
.admin-form-message {
    font-size: 0.85rem;
    min-height: 1.2em;
    margin-top: 0.5rem;
}

.admin-form-message.error {
    color: #e74c3c;
}

.admin-form-message.success {
    color: #27ae60;
}

/* Promo Form */
.admin-promo-form {
    background: #0a0a0a;
    border: 1px solid var(--color-border);
    padding: 2rem;
    margin-bottom: 2rem;
}

.admin-promo-form h3 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.promo-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.admin-promo-form .form-group label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-promo-form .form-group input,
.admin-promo-form .form-group select {
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.9rem;
}

.admin-promo-form .form-group input:focus,
.admin-promo-form .form-group select:focus {
    outline: none;
    border-color: var(--color-text);
}

/* Promo Card */
.promo-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    background: #0a0a0a;
    margin-bottom: 1rem;
}

.promo-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.promo-card-code {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.promo-card-value {
    font-size: 0.95rem;
    color: #27ae60;
}

.promo-card-meta {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Message Cards */
.message-card {
    border: 1px solid var(--color-border);
    background: #0a0a0a;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.message-card:hover {
    border-color: var(--color-text-muted);
}

.message-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.message-card-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.message-card-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.message-card-email {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.message-card-date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.message-card-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.message-status-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 3px;
}

.msg-status-new {
    background: #e74c3c;
    color: #fff;
}

.msg-status-read {
    background: #3498db;
    color: #fff;
}

.msg-status-replied {
    background: #27ae60;
    color: #fff;
}

.msg-status-archived {
    background: #555;
    color: #ccc;
}

.message-card-subject {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.message-card-body {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.message-card.expanded .message-card-body {
    max-height: 500px;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

/* Admin Extended Responsive */
@media (max-width: 768px) {
    .admin-tabs {
        padding: 1rem 1.5rem;
    }

    .admin-tab {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }

    .admin-filter-bar {
        flex-direction: column;
    }

    .admin-table {
        font-size: 0.8rem;
    }

    .admin-table th,
    .admin-table td {
        padding: 0.75rem 0.5rem;
    }

    .admin-product-thumb {
        width: 40px;
        height: 40px;
    }

    .promo-form-grid {
        grid-template-columns: 1fr;
    }

    .size-stock-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .message-card-header {
        flex-direction: column;
    }

    .message-card-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .promo-card {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* ==========================================
   Payment Badges
   ========================================== */
.payment-badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.payment-badge {
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
}

/* ==========================================
   Tracking (Admin)
   ========================================== */
.order-tracking {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    align-items: center;
}

.tracking-input {
    flex: 1;
    padding: 0.4rem 0.6rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 0.85rem;
    border-radius: 4px;
}

.tracking-input:focus {
    outline: none;
    border-color: var(--color-text-muted);
}

.btn-tracking {
    white-space: nowrap;
}

/* ==========================================
   Tracking (Client - compte)
   ========================================== */
.tracking-info {
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.tracking-info p {
    margin-bottom: 0.75rem;
}

.btn-tracking-link {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--color-text);
    color: var(--color-bg);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-tracking-link:hover {
    opacity: 0.85;
}

/* ==========================================
   Cancel / Return Request
   ========================================== */
.cancel-return-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cancel-reason-input {
    width: 100%;
    padding: 0.75rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 0.9rem;
    border-radius: 4px;
    resize: vertical;
}

.cancel-reason-input:focus {
    outline: none;
    border-color: var(--color-text-muted);
}

.btn-cancel-request {
    padding: 0.6rem 1.25rem;
    background: transparent;
    color: #e74c3c;
    border: 1px solid #e74c3c;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    align-self: flex-start;
}

.btn-cancel-request:hover {
    background: #e74c3c;
    color: #fff;
}

.btn-cancel-request:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==========================================
   Google Auth Button
   ========================================== */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 1.25rem 0;
    gap: 1rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--color-border);
}

.auth-divider span {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: #ffffff;
    color: #333333;
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
}

.btn-google:hover {
    background: #f7f8f8;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.btn-google svg {
    flex-shrink: 0;
}
