:root {
    --primary-color: #8b0000;
    --primary-light: #9d4dff;
    --primary-dark: #4a00b0;
    --secondary-color: #00f7ff;
    --text-color: #e0e0e0;
    --text-dark: #333;
    --bg-color: #121212;
    --bg-light: #1e1e1e;
    --bg-lighter: #2a2a2a;
    --card-bg: #1e1e1e;
    --card-hover: #2a2a2a;
    --border-color: #333;
    --success-color: #00c853;
    --warning-color: #ffab00;
    --error-color: #ff3d00;
}

[data-theme="light"] {
    --primary-color: #8b0000;
    --primary-light: #9e47ff;
    --primary-dark: #0400b6;
    --secondary-color: #00b8d4;
    --text-color: #333;
    --text-dark: #121212;
    --bg-color: #f5f5f5;
    --bg-light: #ffffff;
    --bg-lighter: #f0f0f0;
    --card-bg: #ffffff;
    --card-hover: #f5f5f5;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.highlight {
    color: var(--primary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(110, 0, 255, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(110, 0, 255, 0.3);
}

/* Header Styles */
.main-header {
    position: fixed;
    height: 70px;
    min-height: 70px;
    max-height: 70px;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.25);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-icon {
    font-size: 1.8rem;
    margin-right: 10px;
    color: var(--primary-color);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-left: 30px;
    position: relative;
}

.nav-list li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-list li a:hover::after {
    width: 100%;
}

.nav-list li a:hover {
    color: var(--primary-color);
}

.nav-actions {
    margin: 30px;
}

.theme-toggle {
    background: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    font-size: 1.2rem;
    position: relative;
    width: 30px;
    height: 30px;
    padding: 0;
}

.theme-toggle i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.theme-toggle .fa-sun {
    opacity: 0;
}

[data-theme="light"] .theme-toggle .fa-moon {
    opacity: 0;
}

[data-theme="light"] .theme-toggle .fa-sun {
    opacity: 1;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 4px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
/* Hero Section */
.hero {
    padding: 150px 0 100px;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    height: 500px;
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: floating 3s ease-in-out infinite;
    margin-bottom: 1rem
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: var(--card-hover);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Products Section */
.products {
    padding: 100px 0;
}

.filter-controls {
    position: sticky;
    width: 100%;
    top: 70px;
    background-color: var(--bg-light);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    z-index: 100;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.filter-btn {
    padding: 8px 20px;
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    height: 200px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    max-width: 80%;
    max-height: 80%;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-price del {
    font-size: 1rem;
    color: #999;
    margin-left: 10px;
}

.product-specs {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.product-specs li {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.product-specs i {
    margin-right: 8px;
    color: var(--primary-color);
    font-size: 0.8rem;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 0.8rem;
}

.load-more {
    text-align: center;
    margin-top: 50px;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
    text-align: center;
}

.newsletter h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    border-radius: 0 30px 30px 0;
    padding: 15px 30px;
}

/* Footer */
.main-footer {
    background-color: var(--bg-light);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}





.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-lighter);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--bg-light);
    border-radius: 15px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 40px;
}

/* Product Details in Modal */
.product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product-details-image {
    text-align: center;
}

.product-details-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.product-details-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.product-details-price {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.product-details-price del {
    font-size: 1.2rem;
    color: #999;
    margin-left: 10px;
}

.product-details-description {
    margin-bottom: 30px;
    line-height: 1.7;
}

.product-details-specs {
    margin-bottom: 30px;
}

.product-details-specs h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.product-details-specs ul {
    list-style: none;
    columns: 2;
    column-gap: 30px;
}

.product-details-specs li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    break-inside: avoid;
}

.product-details-specs i {
    margin-right: 10px;
    color: var(--primary-color);
}

.product-details-actions {
    display: flex;
    gap: 15px;
}

.product-details-actions .btn {
    padding: 15px 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .product-details {
        grid-template-columns: 1fr;
    }
    
    .product-details-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-light);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-list li {
        margin: 0 0 20px 0;
    }
    
    .nav-actions {
        margin: 30px 0 0 0;
        width: 100%;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 30px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 30px;
    }
    
    .product-details-specs ul {
        columns: 1;
    }
    
    .product-details-actions {
        flex-direction: column;
    }
}

/* Cart Icon Styles */
.cart-icon {
    position: relative;
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  
  .cart-icon:hover {
    transform: scale(1.1);
  }
  
  .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
  }
  
  /* Cart Modal Styles */
  .cart-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--bg-light);
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .cart-modal.active {
    right: 0;
  }
  
  .cart-content {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
  }
  
  .cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
  }
  
  .empty-cart-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-color);
    opacity: 0.6;
  }
  
  .empty-cart-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
  }
  
  .cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .checkout-btn {
    width: 100%;
  }

  .clear-cart-btn {
    width: 100%;
    margin-top: 1rem;
  }
  
  /* Cart Item Styles */
  .cart-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
  }
  
  .cart-item-image {
    width: 80px;
    height: 80px;
    background-color: var(--bg-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }
  
  .cart-item-image img {
    max-width: 80%;
    max-height: 80%;
  }
  
  .cart-item-details {
    flex: 1;
  }
  
  .cart-item-title {
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .cart-item-price {
    color: var(--primary-color);
    margin-bottom: 5px;
  }
  
  .cart-item-actions {
    display: flex;
    align-items: center;
  }
  
  .cart-item-quantity {
    margin: 0 10px;
  }
  
  .remove-item {
    margin-left: auto;
    color: var(--error-color);
    cursor: pointer;
  }

  /* ========== CHECKOUT PAGE STYLES ========== */
.checkout-container {
    padding: 50px 0;
    min-height: calc(100vh - 150px);
}

.checkout-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    position: relative;
}

.checkout-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.order-summary, .checkout-form {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.order-summary h2, .checkout-form h2, .checkout-form h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-summary h2 i, .checkout-form h2 i, .checkout-form h3 i {
    color: var(--primary-color);
}

.order-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.order-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 80px;
    height: 80px;
    background-color: var(--bg-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    border-radius: 5px;
}

.order-item-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.order-item-details {
    flex: 1;
}

.order-item-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.order-item-price {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.order-item-quantity {
    font-size: 0.9rem;
    color: #999;
}

.order-totals {
    margin-top: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--border-color);
}

.total-row:last-child {
    border-bottom: none;
}

.grand-total {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 15px;
}

/* Checkout Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input, select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--bg-light);
    color: var(--text-color);
    font-size: 1rem;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(110, 0, 255, 0.2);
}

.card-input-container {
    position: relative;
}

.card-icons {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 5px;
}

.card-icons i {
    color: #999;
    font-size: 1.2rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.submit-order {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 20px;
}

.submit-order i {
    margin-right: 10px;
}

/* Confirmation Modal */
.confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.confirmation-modal.active {
    opacity: 1;
    visibility: visible;
}

.confirmation-content {
    background-color: var(--bg-light);
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    padding: 30px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.confirmation-modal.active .confirmation-content {
    transform: scale(1);
}

.confirmation-header {
    text-align: center;
    margin-bottom: 20px;
}

.confirmation-header i {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 15px;
}

.confirmation-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.close-confirmation {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

.confirmation-body {
    text-align: center;
    line-height: 1.6;
    margin-bottom: 20px;
}

.confirmation-body p {
    margin-bottom: 10px;
}

.confirmation-actions {
    display: flex;
    justify-content: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .checkout-container {
        padding: 30px 0;
    }
    
    .order-summary, .checkout-form {
        padding: 20px;
    }
}
    /* --- Custom Carousel Styles --- */
 .custom-carousel {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 80px auto 0 auto;
    overflow: hidden;
    /*border-radius: 16px;*/
    background: #181818;
    min-height: 540px;
}
.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.carousel-slide {
    min-width: 100%;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*border-radius: 16px;*/
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }
.carousel-btn:hover { background: #d00; }
.carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.carousel-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #fff;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.2s, background 0.2s;
    padding: 0;
}
.carousel-dots button.active {
    background: #d00;
    opacity: 1;
}
@media (max-width: 900px) {
    .custom-carousel, .carousel-slide { height: 480px; min-height: 480px; }
}
@media (max-width: 600px) {
    .custom-carousel, .carousel-slide { height: 280px; min-height: 280px; }
    .carousel-btn { width: 32px; height: 32px; font-size: 1.2rem; }
}
    /* --- Custom Carousel Styles --- */


    /* --- Scrol --- */


/* Auth Page Styles */
.auth-container {
    padding: 80px 0;
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
}

.auth-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.auth-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.auth-description {
    text-align: center;
    margin-bottom: 30px;
    color: var(--secondary-text);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.input-with-icon input {
    padding-left: 45px;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--secondary-text);
    cursor: pointer;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--secondary-text);
    margin: 10px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--border-color);
}

.social-auth {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 30px;
    font-weight: 500;
}

.btn-social.google {
    background-color: #fff;
    color: #333;
    border: 1px solid var(--border-color);
}

.btn-social.facebook {
    background-color: #3b5998;
    color: white;
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    color: var(--secondary-text);
}

.auth-switch a {
    color: var(--primary-color);
    text-decoration: none;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Password Strength Meter */
.password-strength {
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.strength-bar {
    height: 5px;
    flex: 1;
    background-color: var(--bg-lighter);
    border-radius: 5px;
    overflow: hidden;
}

.strength-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 0;
    background-color: #ff5252;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.password-requirements {
    list-style: none;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--secondary-text);
}

.password-requirements li {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.password-requirements .fa-check {
    color: var(--success-color);
    font-size: 0.7rem;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-card {
        padding: 30px 20px;
    }
    
    .social-auth {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.divider {
    margin-top: 20px;
}