* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0b0712;
    color: #e5e5e5;
    line-height: 1.6;
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Cinzel', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(11, 7, 18, 0.92);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(147, 51, 234, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 45px;
    width: 45px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #9333ea;
    box-shadow: 0 0 10px rgba(147, 51, 234, 0.5);
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: #c084fc;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ccc;
}

.nav-links a:hover {
    color: #c084fc;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.insta-head-link {
    font-size: 20px;
    color: #c084fc;
}

.insta-head-link:hover {
    color: #e879f9;
}

.cart-icon {
    position: relative;
    font-size: 22px;
    cursor: pointer;
    color: #c084fc;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: #9333ea;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('https://cdn.salla.sa/rAoegy/131425f7-e3b0-47c5-aea3-5abf6237c869-1000x1000-hMeiGZJOXQN9YotypKeoTV0mWvVx5bapFyfQDloa.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 7, 18, 0.75);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero .subtitle {
    font-size: 13px;
    letter-spacing: 3px;
    color: #c084fc;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 54px;
    margin-bottom: 15px;
    color: #fff;
}

.hero .description {
    font-size: 16px;
    color: #bbb;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: #9333ea;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4);
}

.btn-primary:hover {
    background: #7e22ce;
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.6);
}

.btn-block { width: 100%; text-align: center; }

/* Products Section */
.products-section { padding: 90px 20px; }

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 10px;
}

.purple-divider {
    width: 60px;
    height: 3px;
    background: #c084fc;
    margin: 0 auto;
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: #140d21;
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 132, 252, 0.6);
}

.product-img {
    position: relative;
    height: 280px;
    background: #000;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(11, 7, 18, 0.85);
    border: 1px solid #c084fc;
    color: #c084fc;
    font-size: 10px;
    padding: 3px 8px;
    text-transform: uppercase;
}

.product-info { padding: 20px; }

.product-info h3 {
    font-size: 17px;
    color: #fff;
    margin-bottom: 5px;
}

.product-info .notes {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 18px;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 18px;
    font-weight: 600;
    color: #c084fc;
}

.add-to-cart-btn {
    background: transparent;
    border: 1px solid #9333ea;
    color: #c084fc;
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #9333ea;
    color: #fff;
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    display: none;
}

.cart-overlay.active { display: block; }

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -380px;
    width: 360px;
    height: 100%;
    background: #140d21;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(147, 51, 234, 0.3);
}

.cart-sidebar.active { right: 0; }

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #231638;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.cart-body { flex: 1; padding: 20px; overflow-y: auto; }
.empty-msg { text-align: center; color: #6b7280; margin-top: 40px; }

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    background: #0b0712;
    padding: 10px;
    border-radius: 6px;
}

.cart-item img { width: 50px; height: 50px; object-fit: cover; border-radius: 4px; }
.cart-item-details { flex: 1; }
.cart-item-details h4 { font-size: 13px; color: #fff; }
.cart-item-details p { font-size: 12px; color: #c084fc; }
.remove-btn { background: none; border: none; color: #ef4444; font-size: 18px; cursor: pointer; }

.cart-footer { padding: 20px; border-top: 1px solid #231638; }
.cart-total { display: flex; justify-content: space-between; font-size: 18px; margin-bottom: 15px; color: #fff; }

/* Modal Checkout */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active { display: flex; }

.modal-content {
    background: #140d21;
    padding: 30px;
    width: 90%;
    max-width: 420px;
    border: 1px solid #9333ea;
    position: relative;
    border-radius: 8px;
}

.modal-content .close-btn { position: absolute; top: 15px; right: 20px; }
.modal-header h2 { color: #c084fc; font-size: 22px; margin-bottom: 5px; }
.modal-header p { color: #9ca3af; font-size: 12px; margin-bottom: 20px; }

.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 12px; color: #d1d5db; margin-bottom: 5px; }
.form-group input {
    width: 100%;
    padding: 10px;
    background: #0b0712;
    border: 1px solid #374151;
    color: #fff;
    border-radius: 4px;
}

.payment-methods { display: flex; }
.payment-option {
    flex: 1;
    background: #0b0712;
    border: 1px solid #9333ea;
    padding: 10px;
    text-align: center;
    font-size: 12px;
    border-radius: 4px;
}

/* Footer */
.footer {
    background: #06030a;
    border-top: 1px solid rgba(147, 51, 234, 0.2);
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand p { font-size: 13px; color: #9ca3af; margin: 12px 0; }

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #140d21;
    border: 1px solid #374151;
    color: #c084fc;
    text-align: center;
    line-height: 35px;
    margin-right: 8px;
    border-radius: 50%;
}

.social-links a:hover {
    background: #9333ea;
    color: #fff;
}

.footer-contact h4 { color: #fff; font-size: 16px; margin-bottom: 12px; }
.footer-contact p { font-size: 13px; color: #9ca3af; margin-bottom: 8px; }
.footer-contact i { color: #c084fc; margin-right: 8px; }

.footer-bottom {
    text-align: center;
    border-top: 1px solid #140d21;
    padding-top: 20px;
    font-size: 12px;
    color: #6b7280;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 36px; }
    .cart-sidebar { width: 100%; right: -100%; }
}