:root {
    --primary: #4361ee;
    --primary-dark: #3a0ca3;
    --secondary: #7209b7;
    --accent: #f72585;
    --light: #f8f9fa;
    --dark: #212529;
    --darker: #121212;
    --success: #4cc9f0;
    --warning: #f8961e;
    --danger: #ef233c;
    --gold: #ffd700;
    --platinum: #e5e4e2;
    --diamond: #b9f2ff;
    --public: #4cc9f0;
    --private: #ffd700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0a0a0a;
    color: var(--light);
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(67, 97, 238, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(114, 9, 183, 0.15) 0%, transparent 50%);
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
}

.logo-icon {
    margin-right: 0.8rem;
    color: var(--accent);
}

.navbar-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: white;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--darker);
    z-index: 999;
    padding: 1rem 2rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.show {
    transform: translateY(0);
    display: flex;
}

.mobile-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: white;
    padding-left: 10px;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-dark), var(--darker));
    color: white;
    padding: 8rem 1rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 70px;
}

/* ... (lanjutan CSS yang sama seperti sebelumnya) ... */

/* Coupon Input Fix */
#coupon-code {
    color: white !important;
}

#coupon-code::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.coupon-group {
    display: flex;
    gap: 0.8rem;
}

.coupon-input {
    flex: 1;
}

/* ... (lanjutan CSS yang sama seperti sebelumnya) ... */

@media (max-width: 992px) {
    .navbar-toggle {
        display: block;
    }
    
    .navbar-menu {
        display: none;
    }
}

/* ... (lanjutan CSS yang sama seperti sebelumnya) ... */

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-dark), var(--darker));
    color: white;
    padding: 8rem 1rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 70px;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--success), var(--primary));
}

header .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

header h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(247, 37, 133, 0.3);
}

header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.header-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn i {
    margin-right: 0.5rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.btn-success {
    background: linear-gradient(45deg, var(--success), #2ec4b6);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 201, 240, 0.3);
}

.btn-success:hover {
    background: linear-gradient(45deg, #2ec4b6, var(--success));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 201, 240, 0.4);
}

.btn-gold {
    background: linear-gradient(45deg, var(--gold), #ffaa00);
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(45deg, #ffaa00, var(--gold));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Category Tabs */
.category-tabs {
    margin: 3rem 0 1rem;
}

.tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.tab-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Section */
section {
    margin-bottom: 4rem;
    background: rgba(18, 18, 18, 0.8);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

section h2 {
    color: var(--accent);
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    border-radius: 2px;
}

section p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 800px;
}

/* Produk Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.9));
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.3);
}

.product-card.public {
    border: 1px solid rgba(76, 201, 240, 0.3);
}

.product-card.public::before {
    background: linear-gradient(90deg, var(--public), #2ec4b6);
}

.product-card.private {
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.product-card.private::before {
    background: linear-gradient(90deg, var(--private), #ff6b9e);
}

.product-card .product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.product-card.public .product-badge {
    background: rgba(76, 201, 240, 0.2);
    color: var(--public);
    border: 1px solid var(--public);
}

.product-card.private .product-badge {
    background: rgba(255, 215, 0, 0.4);
    color: var(--private);
    border: 1px solid var(--private);
}

.product-header {
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.product-card .product-header {
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(114, 9, 183, 0.1));
}

.product-card.public .product-header {
    background: linear-gradient(135deg, rgba(76, 201, 240, 0.1), rgba(46, 196, 182, 0.1));
}

.product-card.private .product-header {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.4), rgba(255, 107, 158, 0.1));
}

.product-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-header .price {
    font-size: 2rem;
    font-weight: bold;
    margin: 0.5rem 0;
    background: linear-gradient(to right, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-card.public .price {
    background: linear-gradient(to right, var(--public), #2ec4b6);
    -webkit-background-clip: text;
}

.product-card.private .price {
    background: linear-gradient(to right, var(--private), #ff6b9e);
    -webkit-background-clip: text;
}

.product-header .badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent);
    color: white;
    padding: 0.25rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(247, 37, 133, 0.3);
}

.product-body {
    padding: 2rem;
}

.product-specs {
    list-style-type: none;
    margin-bottom: 2rem;
}

.product-specs li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.product-specs li:hover {
    transform: translateX(5px);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.product-specs li:last-child {
    border-bottom: none;
}

.product-specs li i {
    margin-right: 0.8rem;
    color: var(--accent);
    font-size: 1.1rem;
}

.product-card.public .product-specs li i {
    color: var(--public);
}

.product-card.private .product-specs li i {
    color: var(--private);
}

.product-actions {
    display: flex;
    gap: 0.8rem;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(30, 30, 30, 0.6);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.2);
    background: rgba(40, 40, 40, 0.6);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--darker));
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 0;
    border-radius: 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto 0;
}

.contact-card {
    background: rgba(18, 18, 18, 0.8);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.contact-card p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* Footer */
footer {
    background: var(--darker);
    padding: 3rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand {
    margin-bottom: 2rem;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-brand .logo i {
    margin-right: 0.8rem;
    color: var(--accent);
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.6;
}

.footer-links h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-social h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Cart Button */
.cart-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

#open-cart {
    padding: 1.2rem;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.4);
    position: relative;
    width: 60px;
    height: 60px;
}

#open-cart i {
    font-size: 1.5rem;
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--danger);
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.98));
    border-radius: 16px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.4s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    color: var(--accent);
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--accent);
}

.cart-empty {
    text-align: center;
    padding: 3rem 2rem;
    color: rgba(255, 255, 255, 0.5);
}

.cart-empty i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.cart-empty p {
    font-size: 1.2rem;
}

.cart-items {
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: rgba(255, 255, 255, 0.02);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

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

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

.cart-item-title {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: white;
}

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

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

.quantity-btn {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.quantity-value {
    min-width: 30px;
    text-align: center;
}

.remove-item {
    color: var(--danger);
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 1.5rem;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.remove-item:hover {
    transform: scale(1.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.coupon-group {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.coupon-input {
    flex: 1;
}

.apply-coupon {
    white-space: nowrap;
}

.cart-summary {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.8rem;
    border-radius: 12px;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.summary-total {
    font-weight: bold;
    font-size: 1.3rem;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

/* Product Detail Modal */
.product-detail {
    padding: 1rem 0;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.3);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1100;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    max-width: 350px;
    border-left: 4px solid var(--accent);
}

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

.notification.error {
    background: linear-gradient(45deg, var(--danger), #d90429);
    border-left-color: #ff758f;
}

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

/* Floating particles */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
    animation: float 15s infinite linear;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .navbar-menu {
        display: none;
    }
    
    .navbar-toggle {
        display: block;
    }
    
    header h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 6rem 1rem 4rem;
    }
    
    header h1 {
        font-size: 2.5rem;
    }
    
    header p {
        font-size: 1rem;
    }
    
    .header-actions {
        flex-direction: column;
        align-items: center;
    }
    
    section {
        padding: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    header {
        padding: 5rem 1rem 3rem;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 1.5rem;
    }
    
    .product-header {
        padding: 1.5rem;
    }
    
    .product-body {
        padding: 1.5rem;
    }
    
    .notification {
        max-width: calc(100% - 40px);
        right: 20px;
        left: 20px;
    }
    
    .cart-button {
        bottom: 20px;
        right: 20px;
    }
    
    #open-cart {
        width: 50px;
        height: 50px;
    }
    
    #open-cart i {
        font-size: 1.2rem;
    }
    
    #cart-count {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
}