/* Perfume E-commerce Shop CSS */
/* All selectors use eshop_ prefix */

/* ===== COLOR PALETTE ===== */
:root {
    --tortoise: #754734;      /* Deep Warm Tortoise Shell */
    --amber: #d9b648;         /* Golden Fleck Accent */
    --cloud-dancer: #f2f0eb;  /* Color of the Year (Off-White) */
    --slate-earth: #2d2a26;   /* Dark Earthy Text */
    --line-muted: #e0ddd5;    /* Subtle Divider */
    --bg-surface: #ffffff;    /* Pure White for card depth */
    --bg-red: #ff3b30;        /* Red */
    --forest-green: #228b22;  /* Forest Green */
    
    /* Semantic color mappings */
    --eshop-color-primary: var(--tortoise);
    --eshop-color-secondary: var(--amber);
    --eshop-color-accent: var(--forest-green);
    --eshop-color-success: var(--forest-green);
    --eshop-color-warning: var(--amber);
    --eshop-color-error: var(--bg-red);
    --eshop-color-info: var(--tortoise);
    --eshop-color-light: var(--cloud-dancer);
    --eshop-color-dark: var(--slate-earth);
    --eshop-color-text: var(--slate-earth);
    --eshop-color-text-light: var(--tortoise);
    --eshop-color-border: var(--line-muted);
    --eshop-color-background: var(--cloud-dancer);
    --eshop-color-surface: var(--bg-surface);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--eshop-color-text);
    background-color: var(--eshop-color-background);
    margin: 0;
    padding: 0;
}

/* ===== STANDALONE CONTAINER ===== */
.eshop-standalone-container {
    min-height: 100vh;
    background-color: var(--eshop-color-background);
}

/* ===== BASKET ICON ===== */
.eshop-basket-icon {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--eshop-color-surface);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Ensure it doesn't affect layout */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.eshop-basket-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.eshop-basket-icon a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.eshop-basket-icon svg {
    transition: stroke 0.3s ease;
    flex-shrink: 0;
}

.eshop-basket-icon:hover svg {
    stroke: var(--eshop-color-secondary);
}

/* Basket count badge */
#eshop-basket-count-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--eshop-color-secondary);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

a {
    text-decoration: none;
    color: var(--eshop-color-primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--eshop-color-secondary);
}

/* ===== GRID SYSTEM ===== */
.eshop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.eshop-grid {
    display: grid;
    gap: 20px;
}

.eshop-grid-cols-1 { grid-template-columns: 1fr; }
.eshop-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.eshop-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.eshop-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.eshop-grid-cols-5 { grid-template-columns: repeat(5, 1fr); }

.eshop-flex {
    display: flex;
}

.eshop-flex-wrap {
    flex-wrap: wrap;
}

.eshop-justify-between {
    justify-content: space-between;
}

.eshop-justify-center {
    justify-content: center;
}

.eshop-align-center {
    align-items: center;
}

.eshop-text-center {
    text-align: center;
}

/* ===== CONTAINER ===== */
.eshop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* ===== HEADER ===== */
.eshop-header {
    background-color: var(--eshop-color-primary);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.eshop-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.eshop-logo a {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.eshop-logo a:hover {
    color: var(--eshop-color-secondary);
}

.eshop-nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.eshop-nav-link {
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: block;
}

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

/* ===== MAIN CONTENT ===== */
.eshop-main {
    padding: 2rem 0;
    min-height: calc(100vh - 4rem);
}

/* ===== PRODUCT GRID ===== */
.eshop-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 2rem;
}

.eshop-product-card {
    background: var(--eshop-color-surface);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.eshop-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.eshop-product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: var(--eshop-color-light);
}

.eshop-product-info {
    padding: 1rem;
}

.eshop-product-brand {
    color: var(--eshop-color-text-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.eshop-product-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--eshop-color-text);
    line-height: 1.4;
}

.eshop-product-name a {
    color: var(--eshop-color-text);
    text-decoration: none;
}

.eshop-product-name a:hover {
    color: var(--eshop-color-primary);
}

.eshop-product-volume {
    color: var(--eshop-color-text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.eshop-product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--eshop-color-primary);
    margin-bottom: 1rem;
}

.eshop-product-regular-price {
    text-decoration: line-through;
    color: var(--eshop-color-text-light);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.eshop-discount-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--eshop-color-error);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* ===== FILTERS ===== */
.eshop-filters {
    background: var(--eshop-color-surface);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.eshop-filter-section {
    margin-bottom: 1.5rem;
}

.eshop-filter-section:last-child {
    margin-bottom: 0;
}

.eshop-filter-title {
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--eshop-color-primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.eshop-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.eshop-filter-btn {
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--eshop-color-border);
    background: var(--eshop-color-surface);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
}

.eshop-filter-btn:hover {
    border-color: var(--eshop-color-secondary);
    color: var(--eshop-color-secondary);
}

.eshop-filter-btn.eshop-active {
    background-color: var(--eshop-color-secondary);
    color: white;
    border-color: var(--eshop-color-secondary);
}

.eshop-price-range {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.eshop-price-input {
    width: 80px;
    padding: 0.4rem;
    border: 1px solid var(--eshop-color-border);
    border-radius: 4px;
    font-size: 0.9rem;
}

/* ===== PAGINATION ===== */
.eshop-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.eshop-page-link {
    padding: 0.5rem 1rem;
    border: 1px solid var(--eshop-color-border);
    background: white;
    color: var(--eshop-color-text);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.eshop-page-link:hover {
    background-color: var(--eshop-color-light);
    border-color: var(--eshop-color-secondary);
}

.eshop-page-link.eshop-active {
    background-color: var(--eshop-color-primary);
    color: white;
    border-color: var(--eshop-color-primary);
}

/* ===== PRODUCT PAGE ===== */
.eshop-product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.eshop-product-detail-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.eshop-product-detail-info h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--eshop-color-primary);
}

.eshop-product-detail-brand {
    color: var(--eshop-color-text-light);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.eshop-product-detail-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--eshop-color-primary);
    margin-bottom: 1rem;
}

.eshop-product-detail-description {
    color: var(--eshop-color-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.eshop-add-to-cart-btn {
    background-color: var(--eshop-color-success);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.eshop-add-to-cart-btn:hover {
    background-color: #229954;
}

/* ===== BASKET PAGE ===== */
.eshop-basket {
    background: var(--eshop-color-surface);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.eshop-basket-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--eshop-color-border);
    align-items: start;
}

.eshop-basket-item:last-child {
    border-bottom: none;
}

.eshop-basket-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.eshop-basket-item-info h3 {
    margin-bottom: 0.5rem;
    color: var(--eshop-color-primary);
    font-size: 1rem;
}

.eshop-basket-item-info h3 a {
    color: var(--eshop-color-primary);
    text-decoration: none;
}

.eshop-basket-item-info h3 a:hover {
    color: var(--eshop-color-secondary);
}

.eshop-basket-item-brand {
    color: var(--eshop-color-text-light);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.eshop-basket-item-volume {
    color: var(--eshop-color-text-light);
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.eshop-basket-item-price {
    color: var(--eshop-color-text);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

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

.eshop-quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--eshop-color-border);
    background: var(--eshop-color-surface);
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.eshop-quantity-btn:hover {
    background-color: var(--eshop-color-light);
    border-color: var(--eshop-color-secondary);
}

.eshop-quantity-input {
    width: 50px;
    padding: 0.4rem;
    border: 1px solid var(--eshop-color-border);
    border-radius: 4px;
    text-align: center;
    font-size: 0.9rem;
}

.eshop-basket-item-subtotal {
    font-weight: bold;
    color: var(--eshop-color-primary);
    font-size: 1.1rem;
    grid-column: 3;
    text-align: right;
}

.eshop-basket-item-remove {
    grid-column: 3;
    text-align: right;
    margin-top: 0.5rem;
}

.eshop-remove-btn {
    background-color: var(--eshop-color-error);
    color: white;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.8rem;
}

.eshop-remove-btn:hover {
    background-color: #d63031;
}

.eshop-basket-summary {
    padding: 1.5rem;
    background-color: var(--eshop-color-light);
    border-top: 2px solid var(--eshop-color-border);
}

.eshop-basket-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--eshop-color-primary);
    margin-bottom: 1.5rem;
}

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

.eshop-checkout-btn {
    background-color: var(--eshop-color-success);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    flex: 1;
    min-width: 200px;
}

.eshop-checkout-btn:hover {
    background-color: #229954;
}

/* ===== CHECKOUT FORM ===== */
.eshop-checkout-section {
    animation: eshop-slideDown 0.3s ease-out;
}

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

.eshop-checkout-panel {
    background: var(--eshop-color-surface);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.eshop-checkout-title h2 {
    color: var(--eshop-color-primary);
    font-size: 1.5rem;
    margin: 0;
}

.eshop-badge-card {
    background: var(--eshop-color-secondary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eshop-field-group {
    margin-bottom: 1.5rem;
}

.eshop-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--eshop-color-text);
    font-size: 0.9rem;
}

.eshop-input,
.eshop-textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--eshop-color-border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--eshop-color-surface);
}

.eshop-input:focus,
.eshop-textarea:focus {
    outline: none;
    border-color: var(--eshop-color-secondary);
    box-shadow: 0 0 0 2px rgba(217, 182, 72, 0.2);
}

.eshop-input:invalid,
.eshop-textarea:invalid {
    border-color: var(--eshop-color-error);
}

.eshop-textarea {
    resize: vertical;
    min-height: 100px;
}

.eshop-payment-note {
    color: var(--eshop-color-text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.eshop-checkout-form button[type="submit"]:disabled {
    background-color: var(--eshop-color-text-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.eshop-checkout-form button[type="submit"]:disabled:hover {
    background-color: var(--eshop-color-text-light);
}

/* ===== ADDRESS FIELDS ===== */
.eshop-checkout-section-title {
    border-bottom: 2px solid var(--eshop-color-border);
    padding-bottom: 0.5rem;
}

.eshop-address-fields {
    background: var(--eshop-color-light);
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid var(--eshop-color-border);
}

.eshop-payment-fields {
    background: var(--eshop-color-light);
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid var(--eshop-color-border);
}

/* ===== FIELD VALIDATION ===== */
.eshop-field-error {
    color: var(--eshop-color-error);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

.eshop-input.error,
.eshop-textarea.error {
    border-color: var(--eshop-color-error);
    box-shadow: 0 0 0 2px rgba(255, 59, 48, 0.1);
}

.eshop-input.success,
.eshop-textarea.success {
    border-color: var(--eshop-color-success);
    box-shadow: 0 0 0 2px rgba(34, 139, 34, 0.1);
}

/* Card type indicator */
#eshop-card-type {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#eshop-card-type.success {
    color: var(--eshop-color-success);
}

#eshop-card-type.error {
    color: var(--eshop-color-error);
}

/* Responsive address fields */
@media (max-width: 768px) {
    .eshop-address-fields,
    .eshop-payment-fields {
        padding: 1rem;
    }
    
    .eshop-checkout-section-title h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .eshop-address-fields,
    .eshop-payment-fields {
        padding: 0.8rem;
    }
    
    .eshop-checkout-section-title h3 {
        font-size: 0.9rem;
    }
}

/* ===== FLASH MESSAGES ===== */
.eshop-flash-message {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1001;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    font-weight: 500;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideIn 0.3s ease-out;
}

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

.eshop-flash-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.eshop-flash-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.eshop-flash-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* ===== FOOTER ===== */
.eshop-footer {
    background-color: var(--eshop-color-primary);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .eshop-container {
        padding: 0 10px;
    }
    
    .eshop-header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .eshop-nav ul {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .eshop-nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .eshop-product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .eshop-product-image {
        height: 200px;
    }
    
    .eshop-product-info {
        padding: 0.8rem;
    }
    
    .eshop-product-brand {
        font-size: 0.7rem;
    }
    
    .eshop-product-name {
        font-size: 0.9rem;
    }
    
    .eshop-product-price {
        font-size: 1.1rem;
    }
    
    .eshop-filters {
        padding: 1rem;
    }
    
    .eshop-filter-title {
        font-size: 0.8rem;
    }
    
    .eshop-filter-btn {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .eshop-price-input {
        width: 70px;
        font-size: 0.8rem;
    }
    
    .eshop-pagination {
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    
    .eshop-page-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .eshop-product-detail {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .eshop-product-detail-image {
        height: 300px;
    }
    
    .eshop-product-detail-info h1 {
        font-size: 1.5rem;
    }
    
    .eshop-product-detail-price {
        font-size: 1.5rem;
    }
    
    .eshop-basket-item {
        grid-template-columns: 60px 1fr;
        gap: 0.8rem;
        padding: 0.8rem;
    }
    
    .eshop-basket-item-image {
        width: 60px;
        height: 60px;
    }
    
    .eshop-basket-item-info h3 {
        font-size: 0.9rem;
    }
    
    .eshop-basket-item-brand,
    .eshop-basket-item-volume,
    .eshop-basket-item-price {
        font-size: 0.8rem;
    }
    
    .eshop-basket-item-quantity {
        grid-column: 2;
        margin-top: 0.5rem;
    }
    
    .eshop-basket-item-subtotal {
        grid-column: 2;
        text-align: left;
        margin-top: 0.5rem;
        font-size: 1rem;
    }
    
    .eshop-basket-item-remove {
        grid-column: 2;
        text-align: left;
        margin-top: 0.5rem;
    }
    
    .eshop-quantity-btn {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
    
    .eshop-quantity-input {
        width: 45px;
        font-size: 0.8rem;
    }
    
    .eshop-basket-summary {
        padding: 1rem;
    }
    
    .eshop-basket-total {
        font-size: 1.1rem;
    }
    
    .eshop-basket-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .eshop-checkout-btn {
        min-width: auto;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .eshop-container {
        padding: 0 8px;
    }
    
    .eshop-product-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .eshop-product-image {
        height: 150px;
    }
    
    .eshop-product-info {
        padding: 0.6rem;
    }
    
    .eshop-product-name {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .eshop-product-price {
        font-size: 1rem;
    }
    
    .eshop-filters {
        padding: 0.8rem;
    }
    
    .eshop-filter-options {
        gap: 0.3rem;
    }
    
    .eshop-filter-btn {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    .eshop-price-range {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .eshop-price-input {
        width: 100%;
    }
    
    .eshop-product-detail {
        padding: 0.8rem;
    }
    
    .eshop-product-detail-image {
        height: 250px;
    }
    
    .eshop-product-detail-info h1 {
        font-size: 1.3rem;
    }
    
    .eshop-product-detail-price {
        font-size: 1.3rem;
    }
    
    .eshop-basket-item {
        padding: 0.6rem;
        gap: 0.6rem;
    }
    
    .eshop-basket-item-image {
        width: 50px;
        height: 50px;
    }
    
    .eshop-basket-item-info h3 {
        font-size: 0.8rem;
    }
    
    .eshop-quantity-btn {
        width: 22px;
        height: 22px;
        font-size: 0.8rem;
    }
    
    .eshop-quantity-input {
        width: 40px;
        font-size: 0.7rem;
    }
    
    .eshop-checkout-btn {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
    
    .eshop-page-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
}
