:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --gold-color: #d4af37;
    --text-light: #f5f5f5;
    --text-dark: #333;
    --card-bg: #ffffff;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 12px 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.logo:hover {
    opacity: 0.9;
}

.logo i {
    color: var(--gold-color);
    font-size: 1.5rem;
}

.nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-actions button {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    position: relative;
}

.header-actions button:hover {
    color: var(--gold-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bar {
    display: none;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.search-bar.active {
    display: flex;
    gap: 10px;
}

.search-bar input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.search-bar button {
    padding: 10px 20px;
    background: var(--gold-color);
    border: none;
    border-radius: 5px;
    color: var(--primary-color);
    cursor: pointer;
}

.menu-toggle {
    display: none;
}

/* User Menu */
.user-menu {
    position: absolute;
    top: 100%;
    right: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
    padding: 20px;
    min-width: 200px;
    display: none;
    z-index: 1001;
}

@media (max-width: 768px) {
    .user-menu {
        right: 50px;
    }
}

@media (max-width: 480px) {
    .user-menu {
        right: 10px;
        min-width: 180px;
    }
}

.user-menu.active {
    display: block;
}

.user-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login-btn, .register-btn {
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.login-btn {
    background: var(--primary-color);
    color: white;
}

.register-btn {
    background: var(--gold-color);
    color: var(--primary-color);
}

.user-logged {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.user-info i {
    font-size: 2rem;
    color: var(--primary-color);
}

.user-greeting {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.user-greeting:hover {
    background: rgba(255, 255, 255, 0.25);
}

.user-greeting i {
    color: var(--gold-color);
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: #d13652;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(233, 69, 96, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

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

/* Categories */
.categories {
    padding: 60px 0;
    background: white;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.category-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.category-card i {
    font-size: 2.5rem;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.category-card span {
    font-weight: 500;
}

/* Products Section */
.products-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-header h2 i {
    color: var(--gold-color);
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.product-badge.combo {
    background: var(--gold-color);
    color: var(--primary-color);
}

.product-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image i {
    font-size: 5rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
}

.product-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--primary-color);
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-action-btn:hover {
    background: var(--accent-color);
    color: white;
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-btn:hover {
    background: var(--secondary-color);
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    text-align: center;
}

.newsletter-content h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 15px 30px;
    background: var(--gold-color);
    color: var(--primary-color);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #c9a227;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--gold-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--gold-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold-color);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    background: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header button {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

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

.empty-cart {
    text-align: center;
    color: #999;
    padding: 40px 20px;
}

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

.cart-item-image {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image i {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.5;
}

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

.cart-item-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--accent-color);
    font-weight: 600;
}

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

.cart-item-quantity button {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 5px;
    cursor: pointer;
}

.cart-item-quantity span {
    font-weight: 600;
}

.cart-item-remove {
    color: var(--accent-color);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cart-total span:last-child {
    color: var(--accent-color);
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.checkout-btn:hover {
    background: #d13652;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

.modal h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.modal-content .btn {
    width: 100%;
    margin-top: 10px;
}

.modal-footer-text {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.modal-footer-text a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

/* Checkout Modal */
.checkout-modal {
    max-width: 700px;
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.form-section h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.payment-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-option {
    flex: 1;
    min-width: 100px;
}

.payment-option input {
    display: none;
}

.payment-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option input:checked + span {
    border-color: var(--accent-color);
    background: rgba(233, 69, 96, 0.1);
}

.payment-option i {
    color: var(--primary-color);
}

.checkout-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #666;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
    z-index: 4000;
    transition: var(--transition);
    opacity: 0;
}

.toast.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        gap: 10px;
    }

    .logo span {
        display: none;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .header-actions {
        gap: 2px;
    }

    .header-actions button {
        padding: 6px;
        font-size: 0.9rem;
    }

    .user-greeting {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .user-greeting span {
        display: none;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card {
        padding: 20px 10px;
    }

    .category-card i {
        font-size: 1.8rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
        z-index: 9999;
    }
    
    .cart-sidebar.active {
        right: 0;
    }
    
    .cart-items {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

    .logo {
        font-size: 1.1rem;
    }

    .logo i {
        font-size: 1.3rem;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        text-align: center;
    }

    .nav.active {
        display: flex;
    }

    .header-actions {
        gap: 5px;
    }

    .header-actions button {
        padding: 8px;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .modal-content {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header .container {
        gap: 10px;
    }

    .logo span {
        display: none;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .header-actions {
        gap: 2px;
    }

    .header-actions button {
        padding: 6px;
        font-size: 0.9rem;
    }

    .user-greeting {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .user-greeting span {
        display: none;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card {
        padding: 20px 10px;
    }

    .category-card i {
        font-size: 1.8rem;
    }

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

    .section-header h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    
    .cart-item-details {
        width: 100%;
    }
    
    .cart-item-remove {
        align-self: flex-end;
    }
    
    .cart-footer {
        padding: 15px;
    }
    
    .cart-total {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .checkout-btn {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeIn 0.5s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }

/* Floating Cart Button */
.floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--accent-color), #d13652);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(233, 69, 96, 0.5);
    z-index: 999;
    transition: var(--transition);
    animation: floatPulse 2s infinite;
}

.floating-cart:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 35px rgba(233, 69, 96, 0.6);
}

.floating-cart i {
    font-size: 1.5rem;
    color: white;
}

.floating-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--gold-color);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes floatPulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.floating-whatsapp {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
    animation: floatPulse 2s infinite;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
    font-size: 1.8rem;
    color: white;
}

@media (max-width: 768px) {
    .floating-cart {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
    .floating-whatsapp {
        bottom: 95px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
}

.view-all-container {
    text-align: center;
    margin-top: 30px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(26, 26, 46, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 26, 46, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.view-all-btn i {
    color: var(--gold-color);
}

@media (max-width: 768px) {
    .hero { min-height: 500px; }
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 0.95rem; margin-bottom: 25px; }
    .btn { padding: 12px 25px; font-size: 0.9rem; }
    
    .products-section { padding: 50px 0; }
    .section-header { margin-bottom: 30px; }
    .section-header h2 { font-size: 1.6rem; gap: 10px; }
    .section-header p { font-size: 0.95rem; }
    
    .products-grid { gap: 20px; }
    .product-card { border-radius: 15px; }
    .product-image { height: 180px; }
    .product-image img { padding: 20px; }
    .product-info { padding: 15px; }
    .product-title { font-size: 0.95rem; }
    .current-price { font-size: 1.2rem; }
    .add-to-cart-btn { padding: 10px; font-size: 0.85rem; }
    
    .newsletter { padding: 50px 0; }
    .newsletter-content h3 { font-size: 1.5rem; }
    .newsletter-content p { font-size: 0.95rem; }
    
    .footer { padding: 40px 0 15px; }
    .footer-grid { gap: 25px; }
    .footer-section h4 { font-size: 1.1rem; margin-bottom: 15px; }
    .footer-section ul li { font-size: 0.9rem; }
    .footer-bottom { font-size: 0.85rem; }
    
    .product-action-btn { width: 35px; height: 35px; font-size: 0.9rem; }
    
    .floating-cart, .floating-whatsapp { width: 55px; height: 55px; }
    .floating-cart i { font-size: 1.3rem; }
    .floating-whatsapp i { font-size: 1.5rem; }
    .floating-cart-count { width: 20px; height: 20px; font-size: 0.7rem; }
}

@media (max-width: 480px) {
    .hero { min-height: 450px; }
    .hero h1 { font-size: 1.5rem; }
    .hero p { font-size: 0.85rem; }
    .hero-buttons { gap: 12px; }
    .btn { padding: 10px 20px; font-size: 0.85rem; }
    
    .categories { padding: 40px 0; }
    .category-grid { gap: 12px; }
    .category-card { padding: 15px 10px; }
    .category-card i { font-size: 1.5rem; margin-bottom: 8px; }
    .category-card span { font-size: 0.8rem; }
    
    .products-section { padding: 40px 0; }
    .products-grid { grid-template-columns: 1fr; gap: 15px; }
    .product-card:hover { transform: none; }
    
    .newsletter-content h3 { font-size: 1.3rem; }
    .newsletter-form input { padding: 12px 15px; font-size: 0.9rem; }
    .newsletter-form button { padding: 12px 20px; font-size: 0.9rem; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    
    .floating-cart, .floating-whatsapp { width: 50px; height: 50px; }
    .floating-cart { bottom: 15px; right: 15px; }
    .floating-whatsapp { bottom: 80px; right: 15px; }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-item-image {
        width: 50px;
        height: 50px;
    }
    
    .cart-item-image i {
        font-size: 1.5rem;
    }
    
    .cart-footer {
        padding: 15px;
    }
    
    .cart-total {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .checkout-btn {
        width: 100%;
        padding: 12px;
        font-size: 0.9rem;
    }
}

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

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.catalog-header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 80px 20px 40px;
    text-align: center;
    color: white;
}

.catalog-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.catalog-filters {
    background: white;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.filter-btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 3px;
    border: 2px solid #ddd;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background: #1a1a2e;
    color: white;
    border-color: #1a1a2e;
}

#catalogGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.catalog-header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 80px 20px 40px;
    text-align: center;
    color: white;
}

.catalog-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.catalog-filters {
    background: white;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.filter-btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 3px;
    border: 2px solid #ddd;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background: #1a1a2e;
    color: white;
    border-color: #1a1a2e;
}

@media (max-width: 768px) {
    .catalog-header { padding: 70px 15px 30px; }
    .catalog-header h1 { font-size: 1.8rem; }
    .catalog-filters { padding: 12px 10px; overflow-x: auto; white-space: nowrap; }
    .filter-btn { padding: 8px 15px; font-size: 0.8rem; }
    #catalogGrid { grid-template-columns: repeat(2, 1fr); gap: 15px; padding: 20px 15px; }
}

@media (max-width: 480px) {
    #catalogGrid { grid-template-columns: 1fr; }
}

.toast-notification {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(400px);
    transition: transform 0.3s;
    z-index: 3000;
    font-weight: 500;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-notification i {
    font-size: 1.2rem;
}

#toastMessage {
    font-size: 0.95rem;
}

.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.cart-modal.active {
    display: flex;
}

.cart-modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cart-modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-modal-header h3 {
    color: #1a1a2e;
}

.cart-modal-header button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.cart-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.cart-modal-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

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

.cart-item-info h4 {
    font-size: 0.9rem;
    color: #1a1a2e;
    margin-bottom: 3px;
}

.cart-item-info p {
    font-size: 0.85rem;
    color: #e94560;
}

.cart-item button {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 5px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.checkout-btn-modal {
    width: 100%;
    padding: 15px;
    background: #1a1a2e;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.checkout-btn-modal:hover {
    background: #16213e;
}

.empty-cart-msg {
    text-align: center;
    color: #999;
    padding: 30px;
}

#floatingCartCount {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-color);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 480px) {
    .cart-modal-content {
        width: 95%;
        max-width: none;
        max-height: 90vh;
        border-radius: 15px 15px 0 0;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }
    .cart-modal {
        align-items: flex-end;
    }
}

@media (max-width: 768px) {
    .cart-modal-content {
        width: 100%;
        max-width: none;
        max-height: 85vh;
    }
    
    .cart-modal-body {
        padding: 15px;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .cart-item-info {
        width: 100%;
    }
    
    .cart-item-info h4 {
        font-size: 0.85rem;
    }
    
    .cart-total {
        font-size: 1rem;
    }
}