/* Shop Styles */
:root {
    --color-orange-darkest: #CC4100;
    --color-orange-base: #FF5100;
    --color-orange-light: #FF7433;
    --color-orange-lighter: #FF9766;
    --color-orange-lightest: #FFCBB2;
    --color-yellow-base: #FCB622;
    --color-yellow-light: #FDDB90;
    --color-yellow-lighter: #FFEEC8;
    --color-green-base: #00A800;
    --color-green-light: #54CB54;
    --color-green-lighter: #7DDC7D;
    --color-charcoal: #1F1B1B;
    --color-ink: #2E2A2A;
    --color-cream: #FFF8F3;
    --color-card: #FFFFFF;
    --color-border: #F1D0B9;
    --shadow-soft: 0 15px 30px rgba(204, 65, 0, 0.08);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--color-ink);
    background: radial-gradient(circle at top right, rgba(255, 151, 102, 0.2), transparent 45%),
                radial-gradient(circle at 20% 10%, rgba(252, 182, 34, 0.2), transparent 35%),
                linear-gradient(180deg, var(--color-cream), #FFFFFF 55%);
    min-height: 100vh;
}

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

/* Header */
.shop-header {
    background: linear-gradient(120deg, var(--color-orange-darkest), var(--color-orange-base));
    color: #fff;
    padding: 1.5rem 0;
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: hidden;
}

.shop-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 248, 243, 0.25) 0, transparent 35%),
        radial-gradient(circle at 80% 0%, rgba(255, 151, 102, 0.35) 0, transparent 40%);
    pointer-events: none;
}

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

.shop-logo {
    margin: 0;
}

.shop-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    text-decoration: none;
}

.shop-logo-link img {
    display: block;
    height: 48px;
    width: auto;
}

.brand-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

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

.user-greeting {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Cart Link */
.cart-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s;
    position: relative;
}

.cart-link:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cart-icon {
    font-size: 1.2rem;
}

.cart-text {
    font-size: 0.9rem;
}

.cart-count {
    background: var(--color-yellow-base);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    position: absolute;
    top: 0px;
    right: 0px;
    line-height: 1;
    padding: 3px;
    margin: 0;
    text-align: center;
}

/* Buttons */
.btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--color-orange-base);
    color: #fff;
    box-shadow: 0 8px 15px rgba(255, 81, 0, 0.25);
}

.btn-primary:hover {
    background: var(--color-orange-darkest);
    transform: translateY(-1px);
    box-shadow: 0 12px 20px rgba(204, 65, 0, 0.35);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.btn-office {
    background: #fff;
    color: var(--color-orange-darkest);
    font-weight: 600;
}

.btn-office:hover {
    background: var(--color-orange-lightest);
    color: var(--color-orange-darkest);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255, 203, 178, 0.6);
}

.btn-sm {
    padding: 0.3rem 1.2rem;
    font-size: 0.8rem;
    white-space: nowrap;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.btn-success {
    background: var(--color-green-base);
    color: #fff;
    box-shadow: 0 8px 16px rgba(0, 168, 0, 0.25);
}

.btn-success:hover {
    background: var(--color-green-light);
    transform: translateY(-1px);
    box-shadow: 0 12px 20px rgba(0, 168, 0, 0.35);
}

.btn-secondary {
    background: var(--color-yellow-base);
    color: #402900;
    box-shadow: 0 8px 16px rgba(252, 182, 34, 0.35);
}

.btn-secondary:hover {
    background: var(--color-yellow-light);
}

/* Main Content */
.shop-main {
    padding: 2.5rem 0 4rem;
    min-height: calc(100vh - 200px);
}

.brand-hero {
    position: relative;
    padding: 4rem 0 3rem;
    margin-top: -3rem;
    overflow: hidden;
    background: linear-gradient(100deg, #FF7433, #FF5100);
    color: #fff;
    border-radius: 0 0 32px 32px;
    box-shadow: var(--shadow-soft);
}

.brand-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.12) 0, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 219, 144, 0.45) 0, transparent 45%),
        linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.09) 100%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.brand-hero .container {
    position: relative;
    z-index: 2;
}

.hero-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.hero-copy-block {
    max-width: 520px;
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-copy {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

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

.hero-pattern {
    position: relative;
    padding: 2.5rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    box-shadow: 0 30px 50px rgba(204, 65, 0, 0.35);
}

.pattern-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(40px, 1fr));
    gap: 0.75rem;
}

.pattern-shape {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.pattern-shape:nth-child(odd) {
    background: rgba(255, 219, 144, 0.35);
}

.pattern-shape:nth-child(3n) {
    background: rgba(255, 255, 255, 0.25);
}

.pattern-caption {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.8);
}

/* Filters */
.filters-section {
    background: var(--color-card);
    padding: 1.5rem;
    border-radius: 16px;
    margin-top: -2rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 81, 0, 0.08);
}

.filters-section h2 {
    margin-bottom: 0;
    color: var(--color-charcoal);
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.filters-toggle {
    border: none;
    background: transparent;
    color: var(--color-orange-base);
    font-weight: 600;
    cursor: pointer;
    display: none;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
}

.filters-toggle .toggle-icon {
    transition: transform 0.2s ease;
    font-size: 0.75rem;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-charcoal);
}

.filter-select,
.filter-input {
    padding: 0.5rem;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    font-size: 0.9rem;
    min-width: 150px;
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--color-orange-base);
    box-shadow: 0 0 0 3px rgba(255, 81, 0, 0.15);
}

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

.product-card {
    background: var(--color-card);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(31, 27, 27, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 81, 0, 0.08);
}

.product-card::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--color-orange-base), var(--color-yellow-base));
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(31, 27, 27, 0.12);
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #f8f9fa;
}

.product-image-placeholder {
    width: 100%;
    height: 220px;
    background: var(--color-yellow-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a6f3a;
    font-size: 0.9rem;
}

.product-info {
    padding: 1.25rem;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--color-charcoal);
}

.product-type {
    font-size: 0.85rem;
    color: var(--color-orange-base);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.product-description {
    font-size: 0.9rem;
    color: #5d5555;
    margin-bottom: 0.75rem;
    line-height: 1.55;
}

.product-quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
}

.btn-quantity {
    width: 24px;
    height: 24px;
    border: 1px solid #e9ecef;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
    flex-shrink: 0;
}

.btn-quantity:hover {
    background: #f8f9fa;
    border-color: var(--color-orange-base);
}

.btn-quantity:active {
    transform: scale(0.95);
}

.quantity-value {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-green-base);
    margin-bottom: 0.75rem;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: nowrap;
    flex-shrink: 0;
}


/* Auth Pages */
.auth-container {
    max-width: 400px;
    margin: 2rem auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.auth-container h2 {
    margin-bottom: 0.5rem;
    color: #333;
}

.auth-subtitle {
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.auth-form {
    margin-bottom: 1rem;
}

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

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

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    font-size: 0.9rem;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.auth-footer {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
}

.auth-footer a {
    color: #667eea;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Messages */
.messages {
    margin-bottom: 1rem;
}

.message {
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.message-success {
    background: rgba(0, 168, 0, 0.1);
    color: var(--color-green-base);
    border: 1px solid rgba(0, 168, 0, 0.2);
}

.message-error {
    background: rgba(255, 81, 0, 0.1);
    color: var(--color-orange-darkest);
    border: 1px solid rgba(255, 81, 0, 0.2);
}

/* Loading & No Products */
.loading,
.no-products {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--color-card);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #333;
}

.modal-loading {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
}

.modal-error {
    text-align: center;
    padding: 2rem;
    color: #721c24;
}

.modal-product {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-product-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background: #f8f9fa;
}

.modal-product-image-placeholder {
    width: 100%;
    height: 300px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1rem;
    border-radius: 8px;
}

.modal-product-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-product-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin: 0;
}

.modal-product-sku,
.modal-product-type {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

.modal-product-description {
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

.modal-product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-green-base);
    margin-top: 0.5rem;
}

.modal-product-quantity {
    margin: 1rem 0;
}

.modal-product-quantity label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.modal-product-quantity .quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.modal-product-actions {
    margin-top: 1.5rem;
}

.modal-product-quantity {
    margin: 1rem 0;
}

.modal-product-quantity label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.modal-product-quantity .quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.modal-product-actions {
    margin-top: 1.5rem;
}

/* Cart Page */
.cart-items {
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-card);
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
}

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

.cart-item-image-placeholder {
    width: 100px;
    height: 100px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    border-radius: 4px;
}

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

.cart-item-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-item-sku {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    font-size: 0.9rem;
    color: #495057;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-total {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.item-total {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-green-base);
}

.btn-remove {
    padding: 0.25rem 0.75rem;
    background: var(--color-orange-darkest);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
}

.btn-remove:hover {
    background: #b13600;
}

.cart-summary {
    background: var(--color-card);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
}

.cart-total {
    font-size: 1.5rem;
    text-align: right;
    color: var(--color-green-base);
}

.order-form-section {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.order-form-section h3 {
    margin-bottom: 1rem;
    color: #495057;
}

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

.form-row .form-group {
    flex: 1;
}

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

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

.order-form .form-group input,
.order-form .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: inherit;
}

.order-form .form-group input:focus,
.order-form .form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.empty-cart {
    text-align: center;
    padding: 3rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    color: #fff;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success {
    background: var(--color-green-base);
}

.notification-error {
    background: var(--color-orange-darkest);
}

.notification-rose {
    background: #e91e63; /* Rose/Pink color */
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
}

/* Language and Currency Switcher */
.lang-currency-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.language-form,
.currency-form {
    margin: 0;
}

.language-select,
.currency-select {
    padding: 0.4rem 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
}

.language-select:hover,
.currency-select:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.language-select option,
.currency-select option {
    background: #667eea;
    color: #fff;
}

/* CAPTCHA Styling */
.captcha-wrapper {
    margin-top: 0.5rem;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Style the CAPTCHA elements */
.captcha-container img.captcha {
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 0.5rem;
    background: #f8f9fa;
    cursor: pointer;
    transition: opacity 0.2s;
    display: block;
    height: auto;
}

.captcha-container img.captcha:hover {
    opacity: 0.8;
}

.captcha-container input[name="captcha_1"] {
    padding: 0.75rem;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    font-size: 0.9rem;
    width: 200px;
    max-width: 100%;
}

.captcha-container input[name="captcha_1"]:focus {
    outline: none;
    border-color: var(--color-orange-base);
    box-shadow: 0 0 0 3px rgba(255, 81, 0, 0.1);
}

.btn-refresh-captcha {
    padding: 0.5rem 1rem;
    border: 2px solid var(--color-orange-base);
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: auto;
    height: auto;
    flex-shrink: 0;
    margin: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: var(--color-orange-darkest);
    font-weight: 500;
}

.btn-refresh-captcha:hover {
    background: var(--color-orange-lightest);
    border-color: var(--color-orange-darkest);
    box-shadow: 0 4px 8px rgba(255, 81, 0, 0.2);
    transform: translateY(-2px);
}

.btn-refresh-captcha:active {
    transform: translateY(0) scale(0.95);
}

.btn-refresh-captcha .refresh-icon {
    display: inline-block;
    transition: transform 0.3s;
    font-size: 1.2rem;
    line-height: 1;
}

.btn-refresh-captcha .refresh-text {
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-refresh-captcha:hover .refresh-icon {
    transform: rotate(180deg);
}

.btn-refresh-captcha:active .refresh-icon {
    transform: rotate(360deg);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .brand-hero {
        border-radius: 0 0 24px 24px;
        padding: 3rem 0 2rem;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-pattern {
        order: -1;
        display: none;
    }

    .filters-toggle {
        display: inline-flex;
    }

    .filters {
        flex-direction: column;
    }

    .filters-section.is-collapsed .filters {
        display: none;
    }

    .filter-group {
        width: 100%;
    }

    .filter-select,
    .filter-input {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }

    .modal-product-name {
        font-size: 1.5rem;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item-image,
    .cart-item-image-placeholder {
        width: 100%;
        height: 200px;
    }

    .cart-item-total {
        align-items: flex-start;
        width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .product-actions {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .product-actions .btn {
        flex: 1;
        min-width: 0;
    }
}

