/* AURA SPACE E-commerce Styles */

/* Professional Navigation Enhancements */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: rgba(114, 161, 222, 0.2);
    color: #72a1de;
}

.nav-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 1rem;
}

.search-container {
    position: relative;
}

.search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.search-bar:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: #72a1de;
    box-shadow: 0 0 0 3px rgba(114, 161, 222, 0.2);
}

.search-bar input {
    background: none;
    border: none;
    color: #fff;
    outline: none;
    width: 200px;
    font-size: 0.9rem;
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-btn {
    background: none;
    border: none;
    color: #72a1de;
    cursor: pointer;
    padding: 0.2rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: #fff;
}

.search-suggestions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    border-radius: 0;
    background: none;
    box-shadow: none;
    border: none;
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    cursor: pointer;
    transition: background 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-item:hover {
    background: rgba(114, 161, 222, 0.2);
}

.suggestion-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 0.8rem;
}

.suggestion-content {
    flex: 1;
}

.suggestion-name {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.suggestion-price {
    color: #72a1de;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Search and Cart Notifications */
.search-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #72a1de, #9400d3);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(114, 161, 222, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    max-width: 300px;
}

.search-notification.show {
    transform: translateX(0);
}

.search-notification i {
    font-size: 1.2rem;
}

.clear-search {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-left: auto;
}

.clear-search:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Mobile Menu Overlay */
body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.account-text,
.cart-text {
    display: inline;
}

.right-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Professional Breadcrumb Navigation */
.breadcrumb-nav {
    margin: 90px 0 20px 0;
    padding: 0 20px;
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 1rem 0;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    backdrop-filter: blur(10px);
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb li a {
    color: #72a1de;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.breadcrumb li a:hover {
    background: rgba(114, 161, 222, 0.2);
    color: #fff;
}

.breadcrumb li.active {
    color: #fff;
    font-weight: 500;
}

.breadcrumb li i {
    font-size: 1rem;
}

/* Enhanced Hero Section */
.store-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 17, 33, 0.8) 0%,
        rgba(26, 26, 46, 0.6) 50%,
        rgba(6, 17, 33, 0.8) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #72a1de, #9400d3);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(114, 161, 222, 0.3);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    background: linear-gradient(135deg, #fff, #72a1de);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #72a1de;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-buttons .btn-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #72a1de, #9400d3);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(114, 161, 222, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(114, 161, 222, 0.4);
}

.hero-buttons .btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Basic Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Arial, sans-serif;
    color: #f5f5f7;
    min-height: 100vh;
    background-color: #061121;
    line-height: 1.6;
}

.container {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Header Styles */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(6, 17, 33, 0.8);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    height: 80px;
}

header .left {
    display: flex;
    align-items: center;
    gap: 15px;
}

header .left img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
}

header .nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

header .nav-menu li a {
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
}

header .nav-menu li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #72a1de;
    transition: width 0.3s ease;
}

header .nav-menu li a:hover:after, 
header .nav-menu li a.active:after {
    width: 100%;
}

.right-icons {
    display: flex;
    align-items: center;
    gap: 25px;
    color: #fff;
}

.search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.search-bar input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    width: 180px;
    transition: all 0.3s ease;
    font-family: 'Poppins', Arial, sans-serif;
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-bar i {
    color: #72a1de;
    cursor: pointer;
}

.search-bar:hover, .search-bar:focus-within {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(114, 161, 222, 0.3);
}

.account-link a, .cart-link a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.account-link a:hover, .cart-link a:hover {
    color: #72a1de;
}

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: linear-gradient(135deg, #72a1de 0%, #4285f4 100%);
    color: #fff;
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.store-hero {
    width: 100%;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeIn 2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2;
    background: linear-gradient(to right, #ffffff, #72a1de);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-vid {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}

/* Button Styles */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #72a1de 0%, #4285f4 100%);
    color: #fff;
    border: none;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(114, 161, 222, 0.7);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(114, 161, 222, 0.4);
    background: linear-gradient(135deg, #82b1ee 0%, #5295ff 100%);
}

.btn-secondary:hover {
    background: rgba(114, 161, 222, 0.15);
    transform: translateY(-3px);
    border-color: #72a1de;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Categories Section */
.categories {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fff;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.category-icon {
    font-size: 3rem;
    color: #72a1dea2;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin: 0;
}

/* Products Section */
.featured-products, .all-products {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.services .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    justify-items: center;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(114, 161, 222, 0.2);
    border-color: rgba(114, 161, 222, 0.3);
}

.service-icon {
    font-size: 3.5rem;
    color: #72a1de;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0 0 1rem;
    font-weight: 600;
    text-align: center;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    flex: 1;
    min-width: 300px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    color: #eee;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin: 0;
    color: #fff;
    font-size: 1rem;
}

.testimonial-author p {
    margin: 0;
    color: #72a1dea2;
    font-size: 0.8rem;
}

/* Call to Action Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/digital brain (2).png');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    color: #eee;
    margin-bottom: 30px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background: rgba(6, 17, 33, 0.95);
    margin: 50px auto;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 0;
    overflow: hidden;
    margin: 0;
    position: relative;
    background: none;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}
.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #fff;
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    margin: 0;
    color: #fff;
}

.modal-body {
    padding: 20px;
}

/* Tabs */
.tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    background: transparent;
    border: none;
    color: #ccc;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #72a1dea2;
    border-bottom: 2px solid #72a1dea2;
}

.tab-content {
    padding: 20px 0;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #eee;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #72a1dea2;
    background: rgba(255, 255, 255, 0.1);
}

.forgot-password {
    color: #72a1dea2;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Cart Styles */
.cart-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.empty-cart {
    text-align: center;
    padding: 30px 0;
}

.empty-cart i {
    font-size: 3rem;
    color: #72a1dea2;
    margin-bottom: 20px;
}

.empty-cart p {
    color: #eee;
    margin-bottom: 20px;
}

.btn-shop {
    display: inline-block;
    padding: 8px 16px;
    background: #72a1dea2;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-shop:hover {
    background: #5f8dc8;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    margin: 0 0 5px;
    color: #fff;
    font-size: 0.9rem;
}

.cart-item-price {
    margin: 0;
    color: #72a1dea2;
    font-size: 0.9rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin: 0 15px;
}

.quantity-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cart-item-quantity span {
    margin: 0 10px;
    color: #fff;
}

.cart-item-remove {
    color: #ff6b6b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    color: #ff4757;
}

.cart-summary {
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: #eee;
}

.summary-row.total {
    font-weight: bold;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 5px;
}

.btn-checkout {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #72a1de 0%, #72a1dea2 100%);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(114, 161, 222, 0.3);
}

.btn-checkout:disabled {
    background: #444;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Footer Styles */
footer {
    background: rgba(0, 0, 0, 0.3);
    padding-top: 70px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #ccc;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #72a1dea2;
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #72a1dea2;
    padding-left: 5px;
}

.footer-section i {
    margin-right: 10px;
    color: #72a1dea2;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px 0 0 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
}

.newsletter-form button {
    background: #72a1dea2;
    border: none;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #5f8dc8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #72a1dea2;
}

/* Notification Styles */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(6, 17, 33, 0.9);
    color: #fff;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-left: 3px solid #72a1dea2;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification p {
    margin: 0;
    padding-right: 15px;
}

.notification-close {
    cursor: pointer;
    font-size: 18px;
}

/* Mobile Menu Styles */
.menu-icon {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 200;
}

.menu-icon .bar {
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-icon.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-icon.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-icon.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonials-slider {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 20px;
    }
    
    .menu-icon {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background-color: rgba(6, 17, 33, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 70%;
        height: 100vh;
        padding: 120px 40px 40px;
        transition: all 0.5s ease;
        gap: 40px !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        z-index: 150;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .right-icons {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    /* Product Description Tablet Styles */
    .product-description {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        max-height: none;
        overflow: visible;
        text-align: left;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    /* Product Image Tablet Styles */
    .product-image {
        padding-bottom: 100%; /* Square aspect ratio for tablets */
    }
    
    .product-image img {
        object-fit: cover;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .nav-menu {
        width: 85%;
        padding: 100px 30px 30px;
    }
    
    .category-grid, 
    .services-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-card {
        max-width: 100%;
        width: 100%;
        padding: 2rem;
        text-align: center;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .service-card p {
        font-size: 0.9rem;
        text-align: center;
        line-height: 1.5;
    }
    
    .service-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
    }
    
    /* Product Description Mobile Styles */
    .product-description {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        padding: 0;
        max-height: none;
        overflow: visible;
        text-align: left;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    /* Product Image Mobile Styles */
    .product-image {
        padding-bottom: 100%; /* Square aspect ratio for mobile */
        margin-bottom: 0.8rem;
    }
    
    .product-image img {
        object-fit: cover;
        border-radius: 10px;
    }
    
    .product-card {
        padding: 1rem;
    }
    
    .product-details {
        padding: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-details-grid {
        grid-template-columns: 1fr;
    }
    
    .product-images {
        height: 300px;
    }
    
    .btn {
        width: 100%;
    }
    
    .modal-content {
        width: 95%;
        padding: 20px;
    }
}

body.menu-open {
    overflow: hidden;
}

/* Additional Responsive Fixes */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        padding: 0 !important;
        width: auto !important;
        height: auto !important;
        background-color: transparent !important;
        box-shadow: none !important;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0;
    }
    
    .store-hero {
        height: 75vh;
    }
}

/* Enhanced Product Grid Styles */
/* Professional E-commerce Product Card Styles */
.product-card {
    background: #fff;
    box-shadow: 0 8px 32px rgba(40, 40, 90, 0.12), 0 1.5px 6px rgba(40, 40, 90, 0.08);
    border-radius: 18px;
    padding: 1.25rem 1.25rem 1.5rem 1.25rem;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}
.product-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 24px 48px rgba(40, 40, 90, 0.18), 0 2px 8px rgba(40, 40, 90, 0.10);
}
.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #f5f5f7;
}
.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 12px;
}
.product-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
}
.product-price {
    font-size: 1.18rem;
    font-weight: 700;
    color: #4a7bc8;
    letter-spacing: 0.01em;
}
.product-description {
    color: #444;
    font-size: 0.97rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
    max-height: none;
    overflow: visible;
    display: block;
    word-wrap: break-word;
    hyphens: auto;
}
.product-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(148, 0, 211, 0.3);
    border-color: rgba(148, 0, 211, 0.5);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(148, 0, 211, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 0;
    overflow: hidden;
    margin: 0;
    background: none;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 0;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}
.product-badge {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    border-radius: 0;
    background: none;
    box-shadow: none;
    border: none;
    margin: 0;
    padding: 0;
}

.product-badge.sale {
    background: linear-gradient(45deg, #ff4757, #ff3742);
}


.product-badge.new {
    background: linear-gradient(45deg, #10b981, #059669);
}

.product-badge.premium {
    background: linear-gradient(45deg, #f59e0b, #d97706);
}

.product-details {
    position: relative;
    z-index: 1;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-description {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
    max-height: none;
    overflow: visible;
    display: block;
    word-wrap: break-word;
    hyphens: auto;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #9400d3;
}

.original-price {
    text-decoration: line-through;
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    margin-right: 0.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #fbbf24;
}

.product-rating span {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-cart, .btn-view, .btn-pay {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-cart {
    background: linear-gradient(45deg, #9400d3, #4b0082);
    color: white;
}

.btn-cart:hover {
    background: linear-gradient(45deg, #4b0082, #9400d3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(148, 0, 211, 0.4);
}

.btn-view {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-view:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.btn-pay {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
}

.btn-pay:hover {
    background: linear-gradient(45deg, #f7931e, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.cart-notification.show {
    transform: translateX(0);
}

.cart-notification i {
    font-size: 1.2rem;
}

/* Filter Buttons */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(45deg, #9400d3, #4b0082);
    border-color: #9400d3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(148, 0, 211, 0.3);
}

/* Loading States */
.products-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255,255,255,0.1);
    border-left: 4px solid #9400d3;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Responsive Design for Product Grid */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(6, 17, 33, 0.98);
        flex-direction: column;
        padding: 2rem 0;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 0 2rem;
    }
    
    .nav-menu li a {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: flex-start;
    }
    
    .nav-divider {
        display: none;
    }
    
    .search-bar {
        width: 100%;
        max-width: 250px;
    }
    
    .search-bar input {
        width: 150px;
    }
    
    .account-text,
    .cart-text {
        display: none;
    }
    
    .right-icons {
        gap: 0.5rem;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
        padding: 1rem;
    }
    
    .product-card {
        padding: 1rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-cart, .btn-view, .btn-pay {
        width: 100%;
        font-size: 0.9rem;
        padding: 0.7rem;
    }
    
    .filter-container {
        gap: 0.5rem;
        margin: 1rem 0;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .cart-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-100%);
    }
    
    .cart-notification.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    header {
        padding: 0 20px;
    }
    
    .search-bar input {
        width: 120px;
        font-size: 0.8rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .product-price {
        font-size: 1.2rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 0.4rem;
    }
    
    .btn-cart, .btn-view, .btn-pay {
        font-size: 0.85rem;
        padding: 0.6rem;
    }
}
