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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

/* Header Styles */
.header {
    position: relative;
    background-color: #ffffff;
    padding: 0 0 20px 0;
}

.header-contact-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 40px;
    background-color: #f5f5f5;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #e8e8e8;
}

.header-contact-bar span:nth-child(odd) {
    white-space: nowrap;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 40px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 150px;
    width: auto;
    object-fit: contain;
    max-width: 400px;
}

.logo-content {
    display: none; /* Oculto por defecto, se mostrará solo si la imagen falla */
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-size: 32px;
    font-weight: bold;
    color: #000000;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
}

.logo-tagline {
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
}

.search-section {
    flex: 1;
    max-width: 500px;
    margin-left: 40px;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 25px;
    padding: 10px 20px;
    gap: 10px;
}

.search-icon {
    font-size: 18px;
    color: #666;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #000000;
    outline: none;
}

.search-input::placeholder {
    color: #999;
}

/* Navigation Styles */
.navigation {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
}

.navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
}

.navigation::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    padding-left: 40px;
    padding-right: 40px;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #d4af37;
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    margin-top: 10px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #000000;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-link:hover {
    background-color: #f5f5f5;
    color: #d4af37;
}

/* Botón menú móvil (oculto en escritorio) */
.header-mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 24px;
    color: #333;
    transition: background-color 0.2s, color 0.2s;
}

.header-mobile-toggle:hover {
    background-color: #f5f5f5;
    color: #000;
}

.header-mobile-toggle .hamburger-icon {
    line-height: 1;
}

/* Menú móvil (overlay + panel) */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
}

.mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
}

.mobile-menu-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.is-open .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-close {
    align-self: flex-end;
    margin: 16px 20px 0 0;
    width: 44px;
    height: 44px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 8px;
    font-size: 28px;
    line-height: 1;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.mobile-menu-close:hover {
    background: #f5f5f5;
}

.mobile-menu-contact {
    padding: 20px 24px;
    border-bottom: 1px solid #e8e8e8;
    background: #f9f9f9;
}

.mobile-menu-contact p {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #333;
}

.mobile-menu-contact p:last-child {
    margin-bottom: 0;
}

.mobile-menu-contact a {
    color: #333;
    text-decoration: none;
}

.mobile-menu-contact a:hover {
    text-decoration: underline;
    color: #d4af37;
}

.mobile-menu-search {
    padding: 16px 24px;
    border-bottom: 1px solid #e8e8e8;
}

.mobile-menu-search .search-bar {
    width: 100%;
}

.mobile-menu-cart {
    padding: 16px 24px;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.mobile-menu-cart:active {
    background-color: rgba(255, 102, 0, 0.08);
}

.mobile-menu-cart-label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.mobile-menu-nav {
    padding: 20px 24px 32px;
    flex: 1;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list > li {
    margin-bottom: 4px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link:hover {
    color: #d4af37;
}

.mobile-nav-dropdown {
    margin-bottom: 4px;
}

.mobile-nav-toggle {
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 0;
}

.mobile-nav-dropdown.is-open .mobile-dropdown-list {
    display: block;
}

.mobile-dropdown-list {
    display: none;
    list-style: none;
    padding: 0 0 0 16px;
    margin: 8px 0 0 0;
    border-left: 2px solid #e0e0e0;
}

.mobile-dropdown-list li {
    margin: 0;
}

.mobile-dropdown-link {
    display: block;
    padding: 8px 0;
    font-size: 15px;
    color: #555;
    text-decoration: none;
}

.mobile-dropdown-link:hover {
    color: #d4af37;
}

/* Responsive: ocultar barra de contacto, búsqueda y nav en móvil; mostrar toggle */
@media (max-width: 768px) {
    .header-desktop-only {
        display: none !important;
    }

    .header-mobile-toggle {
        display: flex;
    }

    .header-container {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0 20px 16px;
    }

    .header-container .logo-section {
        flex: 0 0 auto;
    }

    /* Modal carrito en móvil: fixed para que se vea sobre el menú */
    .cart-modal {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        transform: translate(-50%, -50%);
        margin-top: 0 !important;
        max-width: 94vw !important;
        width: 400px !important;
    }
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    margin-top: auto;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 40px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 4px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
    max-width: 240px;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-list li {
    margin-bottom: 8px;
}

.footer-link-list a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-link-list a:hover {
    color: #fff;
}

.footer-contact-item {
    margin: 0 0 6px 0;
    font-size: 14px;
}

.footer-contact-item a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: #fff;
}

.footer-social-icons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    color: #e0e0e0;
    transition: background-color 0.2s, color 0.2s, transform 0.2s;
}

.footer-social-link:hover {
    background-color: #ff6600;
    color: #fff;
    transform: translateY(-2px);
}

.footer-icon {
    width: 20px;
    height: 20px;
}

.footer-copyright {
    border-top: 1px solid #333;
    padding: 20px 40px;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 13px;
    color: #888;
}

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
        padding: 32px 24px 24px;
        gap: 28px;
    }

    .footer-copyright {
        padding: 16px 24px;
    }
}

/* Featured Products Section */
.featured-products {
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-description {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card-add-cart-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-card:hover .product-card-add-cart-btn {
    opacity: 1;
    visibility: visible;
}

/* En móvil el botón + siempre visible (no hay hover) */
@media (max-width: 768px) {
    .product-card .product-card-add-cart-btn {
        opacity: 1;
        visibility: visible;
    }
}

.product-card-add-cart-btn .cart-btn-icon {
    display: none;
}

.product-card-add-cart-btn .cart-btn-plus {
    display: inline-block;
}

.product-card-add-cart-btn:hover .cart-btn-plus {
    display: none;
}

.product-card-add-cart-btn:hover .cart-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-add-cart-btn:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

.product-card-add-cart-btn:active {
    transform: scale(0.95);
}

.product-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Scale Mockups */
.scale-mockup {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.scale-white {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
}

.scale-dark {
    background-color: #2c2c2c;
    border: 2px solid #1a1a1a;
}

.scale-light-gray {
    background-color: #e8e8e8;
    border: 2px solid #d0d0d0;
}

.scale-platform {
    width: 80%;
    height: 30px;
    background-color: #888888;
    border-radius: 5px;
    margin-bottom: 10px;
}

.scale-platform.circular {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.scale-tray {
    width: 70%;
    height: 5px;
    background-color: rgba(173, 216, 230, 0.5);
    border: 1px solid rgba(173, 216, 230, 0.8);
    border-radius: 3px;
    margin-top: -5px;
    margin-bottom: 5px;
}

.scale-display {
    width: 70%;
    height: 35px;
    background-color: #1e3a8a;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.display-text {
    color: #60a5fa;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.scale-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
}

.button-row {
    display: flex;
    gap: 5px;
}

.scale-btn-small {
    width: 20px;
    height: 15px;
    background-color: #3b82f6;
    border-radius: 3px;
    display: inline-block;
}

.scale-btn-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
}

.scale-btn-circle.blue {
    background-color: #3b82f6;
}

.scale-btn-circle.orange {
    background-color: #f97316;
}

.scale-keypad {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.keypad-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

.keypad-btn {
    width: 15px;
    height: 15px;
    background-color: #4a5568;
    border-radius: 2px;
    display: inline-block;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.product-img {
    max-width: 100%;
    max-height: 250px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    min-height: 40px;
    line-height: 1.5;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-price {
    font-size: 22px;
    font-weight: bold;
    color: #000000;
}

.product-stock {
    font-size: 14px;
    color: #28a745;
    font-weight: 500;
}

.product-stock.out-of-stock {
    color: #dc3545;
}

/* Mensajes de estado */
.loading-message,
.error-message,
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: #666;
}

.error-message {
    color: #dc3545;
    background-color: #f8d7da;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
}

.no-products {
    color: #6c757d;
    background-color: #f8f9fa;
    border-radius: 8px;
}

/* Special Offers Section */
.special-offers {
    margin-top: 60px;
}

.offers-banner {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 250px;
}

.offers-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.offers-title {
    font-size: 42px;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 2px;
}

.buy-button {
    background-color: #ffffff;
    color: #d4af37;
    border: none;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 1px;
    width: fit-content;
}

.buy-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.buy-button:active {
    transform: scale(0.98);
}

.offers-product {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Pagination Styles */
.pagination-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    padding: 10px 16px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    color: #000000;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 40px;
}

.pagination-btn:hover:not(.disabled):not(.active) {
    background-color: #f5f5f5;
    border-color: #d4af37;
    color: #d4af37;
}

.pagination-btn.active {
    background-color: #d4af37;
    color: #ffffff;
    border-color: #d4af37;
    cursor: default;
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-ellipsis {
    padding: 0 5px;
    color: #666;
    font-weight: 500;
}

.pagination-info {
    margin-left: 20px;
    color: #666;
    font-size: 14px;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .pagination-info {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .header-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .search-section {
        max-width: 100%;
        margin-left: 0;
        width: 100%;
    }
    
    .logo-section {
        gap: 12px;
    }
    
    .logo-img {
        height: 120px;
        max-width: 350px;
    }
    
    .logo-text {
        font-size: 28px;
    }
    
    .logo-tagline {
        font-size: 11px;
    }
    
    .offers-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .offers-content {
        align-items: center;
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .header-container {
        padding: 0 20px;
    }
    
    .navigation::before {
        left: 20px;
    }
    
    .navigation::after {
        left: 20px;
    }
    
    .nav-menu {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 5px;
        box-shadow: none;
        border: none;
        border-top: 1px solid #e0e0e0;
        border-radius: 0;
    }
    
    .nav-item-dropdown:hover .dropdown-menu {
        transform: none;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .offers-title {
        font-size: 32px;
    }
    
    .logo-img {
        height: 140px;
        max-width: 350px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .logo-tagline {
        font-size: 10px;
    }
}

/* Estilos del carrito */
.cart-icon-wrapper {
    transition: transform 0.2s;
}

.cart-icon-wrapper:hover {
    transform: scale(1.1);
}

.cart-count {
    animation: pulse 0.3s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.cart-modal {
    animation: slideDown 0.2s ease-out;
}

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

.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-name {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin: 0;
}

.cart-item-price {
    font-size: 16px;
    font-weight: 700;
    color: #667eea;
    margin: 0;
}

.cart-item-quantity {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 18px;
    padding: 4px 8px;
    transition: color 0.2s;
}

.cart-item-remove:hover {
    color: #c82333;
}

.view-cart-button:hover {
    background: #e9ecef !important;
}

.close-cart-modal:hover {
    color: #333 !important;
    background: #f5f5f5;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .cart-modal {
        width: calc(100vw - 20px) !important;
        max-width: calc(100vw - 20px) !important;
        right: -10px !important;
    }
    
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background-color: #333;
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    opacity: 0;
    transform: translateX(400px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.toast.success {
    background-color: #28a745;
}

.toast.error {
    background-color: #dc3545;
}

.toast-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .toast {
        min-width: auto;
        max-width: 100%;
    }
}
