/* Modern E-commerce Website Styles */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-color: #00adb5;
    --secondary-color: #222831;
    --accent-color: #eeeeee;
    --light-bg: #f5f7fa;
    --dark-bg: #222831;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
    --border-color: #e9ecef;
    --shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --primary-color: #00adb5;
    --secondary-color: #eeeeee;
    --accent-color: #393e46;
    --light-bg: #222831;
    --dark-bg: #393e46;
    --text-dark: #eeeeee;
    --text-light: #cccccc;
    --white: #393e46;
    --border-color: #495057;
    --shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--accent-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navigation */
.navbar {
    background: var(--white) !important;
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.cart-count {
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.8rem;
    margin-left: 5px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 100px 0;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(50px);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(50px);
}

.hero-buttons {
    opacity: 0;
    transform: translateY(50px);
}

.hero-image {
    opacity: 0;
    transform: translateX(100px);
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: translateY(-10px);
}

.min-vh-75 {
    min-height: 75vh;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
}

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    border: none;
    opacity: 0;
    transform: translateY(50px);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 173, 181, 0.8);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-rating {
    color: var(--warning);
    margin-bottom: 10px;
}


/* categry css */


/* Feature Cards */
.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(50px);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 100px 0 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 173, 181, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Forms */
.form-control {
    border-radius: 10px;
    border: 2px solid var(--border-color);
    padding: 12px 20px;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-dark);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 173, 181, 0.25);
}

.form-select {
    border-radius: 10px;
    border: 2px solid var(--border-color);
    padding: 12px 20px;
    transition: var(--transition);
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 173, 181, 0.25);
}

/* Newsletter */
.newsletter-section {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 0;
}

.newsletter-section h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.newsletter-section p {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.newsletter-form .input-group {
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    border-radius: 50px 0 0 50px;
    border: none;
    padding: 15px 25px;
}

.newsletter-form .btn {
    border-radius: 0 50px 50px 0;
    padding: 15px 30px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer h5, .footer h6 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* About Page */
.about-content {
    padding: 80px 0;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Stats Section */
.stats-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.stat-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.team-info p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Products Page */
.filters-section {
    background: var(--light-bg);
    padding: 30px 0;
}

.products-section {
    padding: 80px 0;
}

/* Product Detail Page */
.product-detail {
    padding: 80px 0;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-color);
}

.product-info {
    padding-left: 50px;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.stars {
    color: var(--warning);
}

.rating-text {
    color: var(--text-light);
}

.product-price {
    margin-bottom: 30px;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 15px;
}

.original-price {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.product-options {
    margin-bottom: 40px;
}

.option-group {
    margin-bottom: 25px;
}

.option-group label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.color-options {
    display: flex;
    gap: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 150px;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-selector input {
    text-align: center;
    width: 60px;
}

.product-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Product Tabs */
.product-tabs {
    padding: 80px 0;
}

.nav-tabs {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 40px;
}

.nav-tabs .nav-link {
    color: var(--text-light);
    font-weight: 500;
    border: none;
    padding: 15px 30px;
    margin-right: 20px;
    border-radius: 10px 10px 0 0;
    transition: var(--transition);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background: var(--white);
    border-bottom: 2px solid var(--primary-color);
}

.tab-content-inner {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.tab-content-inner h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.tab-content-inner h5 {
    color: var(--secondary-color);
    margin: 25px 0 15px;
}

.tab-content-inner ul {
    padding-left: 20px;
}

.tab-content-inner li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.review-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-stars {
    color: var(--warning);
}

.review-meta {
    color: var(--text-light);
}

.review-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Sticky Cart */
.sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    display: none;
    z-index: 1000;
}

.sticky-product-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-product-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.sticky-product-details h6 {
    margin: 0;
    font-size: 1rem;
    color: var(--secondary-color);
}

.sticky-product-details p {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* Services Page */
.services-section {
    padding: 80px 0;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-features li {
    color: var(--text-light);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Service Process */
.service-process {
    padding: 80px 0;
}

.process-step {
    position: relative;
    padding: 30px;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin: 20px 0;
}

.process-step h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Service Pricing */
.service-pricing {
    padding: 80px 0;
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    background: var(--light-bg);
    padding: 30px;
    text-align: center;
}

.pricing-card.featured .pricing-header {
    background: var(--primary-color);
    color: var(--white);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.pricing-card.featured .pricing-header h3 {
    color: var(--white);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-card.featured .price {
    color: var(--white);
}

.price span {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-card.featured .price span {
    color: var(--white);
    opacity: 0.8;
}

.pricing-body {
    padding: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-footer {
    padding: 30px;
    text-align: center;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.contact-info {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 15px;
    height: 100%;
}

.contact-info h3 {
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-details h5 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.map-section {
    padding: 80px 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* FAQ Page */
.faq-section {
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-button {
    background: var(--white);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 30px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 20px 30px;
    background: var(--white);
    color: var(--text-light);
    line-height: 1.6;
}

.accordion-body ul {
    padding-left: 20px;
}

.accordion-body li {
    margin-bottom: 8px;
}

.contact-cta {
    padding: 80px 0;
    text-align: center;
}

.contact-cta h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-cta p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Terms Page */
.terms-content {
    padding: 80px 0;
}

.terms-text {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.terms-text h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.terms-text h2:first-child {
    margin-top: 0;
}

.terms-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.terms-text ul {
    padding-left: 30px;
    margin-bottom: 20px;
}

.terms-text li {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Cart Page */
.cart-section {
    padding: 80px 0;
}

.cart-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.cart-item-price {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-quantity button {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-dark);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-quantity button:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.cart-item-quantity input {
    width: 50px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 5px;
}

.cart-item-remove {
    background: var(--danger);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-remove:hover {
    background: #c82333;
}

.cart-summary {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-light);
}

.summary-total {
    font-size: 1.2rem;
    color: var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.empty-cart {
    text-align: center;
    padding: 100px 0;
}

.empty-cart i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.empty-cart h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.empty-cart p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Checkout Page */
.checkout-section {
    padding: 80px 0;
}

.checkout-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.checkout-form h3 {
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.order-summary {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.order-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.order-item-info {
    flex: 1;
}

.order-item-name {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.order-item-details {
    font-size: 0.9rem;
    color: var(--text-light);
}

.order-item-price {
    font-weight: 600;
    color: var(--primary-color);
}

/* Thank You Page */
.thank-you-section {
    padding: 100px 0;
    text-align: center;
}

.thank-you-content {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 30px;
}

.thank-you-content h1 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.thank-you-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.order-details {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: left;
}

.order-details h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
}

.order-detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--text-light);
}

.order-detail-item strong {
    color: var(--secondary-color);
}

/* 404 Page */
.error-section {
    padding: 100px 0;
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-number {
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1;
}

.error-content h1 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.error-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.error-image {
    margin: 40px 0;
}

.error-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Dark Mode Styles */
[data-theme="dark"] .navbar {
    background: var(--dark-bg) !important;
}

[data-theme="dark"] .hero-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--accent-color) 100%);
}

[data-theme="dark"] .page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
}

[data-theme="dark"] .newsletter-section {
    background: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .product-info {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 1.5rem;
    }
    
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-item-image {
        width: 150px;
        height: 150px;
    }
    
    .contact-form,
    .contact-info {
        padding: 30px;
    }
    
    .terms-text {
        padding: 30px;
    }
    
    .error-number {
        font-size: 6rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .feature-card,
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-form,
    .contact-info {
        padding: 20px;
    }
    
    .cart-summary,
    .order-summary {
        padding: 20px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Utility Classes */
.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: var(--shadow);
}

.border-radius-custom {
    border-radius: 15px;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .social-links {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .container {
        max-width: 100% !important;
    }
}



/* Auth Pages */
.auth-page {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    min-height: 100vh;
}

.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.auth-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.auth-header {
    margin-bottom: 2rem;
}

.auth-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.auth-header h2 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--accent-color);
    cursor: pointer;
    z-index: 10;
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--light-color);
}

.divider span {
    background: var(--white);
    padding: 0 1rem;
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* Password Strength */
.password-strength {
    margin-top: 0.5rem;
}

.strength-bar {
    height: 4px;
    background: var(--light-color);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-fill {
    height: 100%;
    transition: var(--transition);
    border-radius: 2px;
}

.strength-text {
    font-size: 0.8rem;
    color: var(--accent-color);
}

/* Checkout Styles */
.checkout-section {
    padding: 2rem 0;
    min-height: 100vh;
}

.checkout-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.checkout-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.step {
    display: flex;
    align-items: center;
    margin: 0 1rem;
    opacity: 0.5;
    transition: var(--transition);
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    font-weight: 600;
}

.step.active .step-number {
    background: var(--white);
    color: var(--primary-color);
}

.checkout-body {
    padding: 2rem;
}

.order-summary {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-color);
}

.order-item:last-child {
    border-bottom: none;
}

.order-total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: right;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--primary-color);
}

/* Thank You Page */
.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--light-color) 100%);
}

.thank-you-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto;
}

.success-animation {
    margin-bottom: 2rem;
}

.checkmark-circle {
    width: 100px;
    height: 100px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    animation: scaleIn 0.5s ease-in-out;
}

.checkmark {
    width: 30px;
    height: 15px;
    border: 3px solid var(--white);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: checkmarkDraw 0.5s ease-in-out 0.3s both;
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes checkmarkDraw {
    0% { transform: rotate(-45deg) scale(0); }
    100% { transform: rotate(-45deg) scale(1); }
}

.thank-you-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 1rem;
}

.thank-you-subtitle {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.order-details {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    text-align: center;
}

.order-number {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.order-date {
    color: var(--accent-color);
}

.order-summary {
    margin-bottom: 2rem;
}

.order-items {
    background: var(--background-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.delivery-info {
    margin-bottom: 2rem;
}

.info-card {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    height: 100%;
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h5 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.delivery-date {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.next-steps {
    margin-bottom: 2rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--background-color);
    border-radius: var(--border-radius);
}

.step-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.25rem;
}

.action-buttons {
    margin-bottom: 2rem;
    text-align: center;
}

.support-info {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--light-color);
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.support-link {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.support-link:hover {
    color: var(--accent-color);
}

.support-link i {
    margin-right: 0.5rem;
}

/* Confetti Animation */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

/* Alert Styles */
.alert-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1060;
    max-width: 400px;
}

.alert {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--box-shadow);
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Dark Mode Toggle */
#darkModeToggle {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

#darkModeToggle:hover {
    color: var(--primary-color);
    transform: rotate(180deg);
}

/* Loading States */
.btn-spinner {
    display: inline-block;
    animation: spin 1s linear infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .auth-card {
        padding: 2rem;
        margin: 1rem;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .checkout-steps {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .step {
        margin: 0;
    }
    
    .thank-you-title {
        font-size: 2rem;
    }
    
    .support-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        text-align: center;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .product-card {
        margin-bottom: 2rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .action-buttons,
    .support-info {
        display: none !important;
    }
    
    .thank-you-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    body {
        background: white !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}


/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .btn-outline-primary {
        border-width: 3px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Styles */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white);
}