/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 100%;
    margin: 0;
    padding: 0 40px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    position: relative;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.nav-brand {
    flex-shrink: 0;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.mobile-menu-toggle {
    flex-shrink: 0;
    margin-left: 10px;
}

.logo {
    height: 50px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #007bff;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-primary {
    background: #007bff;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #0056b3;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: #007bff;
    border-radius: 5px;
    border: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1001;
    border-top: 1px solid #eee;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: white;
}

.mobile-menu li {
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 18px 25px;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: #007bff;
    background: #f8f9fa;
}

/* Hero Section */
.hero {
    position: relative;
    height: 50vh;
    overflow: hidden;
    margin-top: 100px;
}

.hero-container {
    display: flex;
    width: calc(100% - 40px);
    height: 100%;
    margin: 0 20px;
}

.hero-left {
    width: 25%;
    background: #fff3cd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 15px;
}

.product-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    padding: 10px;
}

.product-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-in-out;
}

.product-slide.active {
    opacity: 1;
    transform: scale(1);
}

.product-slide img {
    width: 80%;
    height: 60%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.btn-detail {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.btn-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,123,255,0.4);
}

.hero-right {
    width: 75%;
    position: relative;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    border-radius: 15px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #ffc107;
    transform: scale(1.2);
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-prev:hover,
.hero-next:hover {
    background: white;
    color: #007bff;
    transform: translateY(-50%) scale(1.1);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    padding: 20px;
    color: white;
}

.service-overlay h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.service-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-hover h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: white;
}

.service-hover p {
    margin: 0;
    line-height: 1.5;
    color: white;
}

.service-card:hover .service-hover {
    opacity: 1;
}

.service-card:hover .service-overlay {
    opacity: 0;
}

/* Products Sections */
.products {
    padding: 80px 0;
    width: 100%;
}

.featured-products {
    background: white;
}

.best-selling {
    background: #f8f9fa;
}

.special-products {
    background: white;
}

/* Product Carousel */
.product-carousel {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    margin: 0 50px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 15px;
}

.carousel-item {
    width: calc(16.666% - 12px);
    flex-shrink: 0;
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.carousel-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

.product-title {
    font-size: 0.8rem;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e47911;
    margin: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Special Products Grid */
.special-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.special-product-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.special-product-card:hover {
    transform: scale(1.05);
}

.special-product-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.special-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.special-product-card:hover .special-product-image img {
    transform: scale(1.1);
}

.special-product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 15px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.special-product-card:hover .special-product-info {
    transform: translateY(0);
}

.special-product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.4;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #fffbf0;
    width: 100%;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.about-text ul {
    list-style: none;
    margin-top: 30px;
}

.about-text li {
    margin-bottom: 10px;
    color: #28a745;
    font-weight: 500;
}

/* Circle Animation */
.circle-container {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    border-radius: 50%;
    background: radial-gradient(circle, #ffc107 0%, #fff3cd 50%, #ffffff 100%);
    animation: rotateCircle 20s linear infinite;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.center-sun {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 10;
    animation: centerCounterRotate 20s linear infinite;
}

.sun-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffc107, #ff8f00);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.6);
    border: 4px solid #fff;
}

.sun-logo img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

@keyframes centerCounterRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}

.circle-item {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    margin-left: -40px;
    margin-top: -40px;
    transform: rotate(var(--angle)) translateY(-200px);
    animation: counterRotate 20s linear infinite;
}

@keyframes counterRotate {
    from { transform: rotate(var(--angle)) translateY(-200px) rotate(0deg); }
    to { transform: rotate(var(--angle)) translateY(-200px) rotate(-360deg); }
}

.circle-item img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffc107;
    transition: all 0.3s ease;
}

.circle-item span {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.circle-item:hover img {
    transform: scale(1.2);
    border-color: #ffc107;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.circle-item:hover span {
    opacity: 1;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
    width: 100%;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1600px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 30px;
    max-width: 1600px;
    margin: 0 auto 30px auto;
}

.footer-col h3 {
    margin-bottom: 20px;
    color: #ffc107;
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #ffc107;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

.footer-social {
    margin-top: 20px;
}

.footer-social h4 {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-social .social-links {
    display: flex;
    gap: 10px;
}

.footer-social .social-links a {
    background: linear-gradient(45deg, #007bff, #ffc107);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.footer-social .social-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

/* Services Detail Page */
.services-detail {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-row {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
    padding: 0 20px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.service-image {
    flex: 1;
    max-width: 500px;
}

.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.why-choose-item {
    text-align: center;
    padding: 30px 20px;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #007bff, #ffc107);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.why-icon i {
    font-size: 1.8rem;
    color: white;
}

.why-choose-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.why-choose-item p {
    color: #666;
    line-height: 1.6;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    font-weight: 400;
}

.section-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #ffc107);
    margin: 0 auto 50px auto;
    border-radius: 2px;
    display: block;
    border: none;
}

/* Categories Section */
.categories {
    padding: 100px 0;
    background: #f8f9fa;
}

/* Services CTA */
.services-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #007bff, #ffc107);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta.primary {
    background: white;
    color: #007bff;
}

.btn-cta.primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-cta.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta.secondary:hover {
    background: white;
    color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .special-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .carousel-item {
        width: calc(20% - 12px);
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .about-content {
        gap: 60px;
    }
    
    .circle-container {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .nav-cta {
        display: flex !important;
        gap: 8px;
    }
    
    .nav-search {
        display: none !important;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .special-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .carousel-item {
        width: calc(25% - 12px);
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .circle-container {
        width: 350px;
        height: 350px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        padding: 15px 20px;
    }
    
    .hero {
        height: auto;
        min-height: 60vh;
    }
    
    .hero-container {
        flex-direction: column;
        margin: 0 10px;
        gap: 15px;
    }
    
    .hero-left,
    .hero-right {
        width: 100%;
        height: 40vh;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        height: 200px;
    }
    
    .carousel-item {
        width: calc(50% - 12px);
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .special-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .circle-container {
        width: 280px;
        height: 280px;
    }
    
    .center-sun {
        width: 80px;
        height: 80px;
    }
    
    .circle-item {
        width: 50px;
        height: 50px;
        margin-left: -25px;
        margin-top: -25px;
        transform: rotate(var(--angle)) translateY(-100px);
    }
    
    @keyframes counterRotate {
        from {
            transform: rotate(var(--angle)) translateY(-100px) rotate(0deg);
        }
        to {
            transform: rotate(var(--angle)) translateY(-100px) rotate(-360deg);
        }
    }
    
    .circle-item span {
        font-size: 0.6rem;
        top: 55px;
    }
    
    .service-row,
    .service-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin-bottom: 50px;
        padding: 0 10px;
    }
    
    .service-content h3 {
        font-size: 2rem;
    }
    
    .service-content p {
        font-size: 1rem;
        text-align: center;
    }
    
    .service-image img {
        height: 250px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .services-cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-cta {
        padding: 12px 25px;
        font-size: 1rem;
        width: 200px;
        text-align: center;
    }
    
    .categories {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }
    
    .header .container {
        padding: 12px 15px;
    }
    
    .logo {
        height: 40px;
    }
    
    .hero-left,
    .hero-right {
        height: 35vh;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .services {
        padding: 50px 0;
    }
    
    .service-card {
        height: 180px;
    }
    
    .service-overlay h3 {
        font-size: 1.1rem;
    }
    
    .carousel-item {
        width: calc(100% - 12px);
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .special-products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .circle-container {
        width: 240px;
        height: 240px;
    }
    
    .center-sun {
        width: 60px;
        height: 60px;
    }
    
    .circle-item {
        width: 45px;
        height: 45px;
        margin-left: -22px;
        margin-top: -22px;
        transform: rotate(var(--angle)) translateY(-90px);
    }
    
    @keyframes counterRotate {
        from {
            transform: rotate(var(--angle)) translateY(-90px) rotate(0deg);
        }
        to {
            transform: rotate(var(--angle)) translateY(-90px) rotate(-360deg);
        }
    }
    
    .circle-item span {
        display: none;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .service-content h3 {
        font-size: 1.8rem;
    }
    
    .why-choose-item {
        padding: 20px 15px;
    }
    
    .why-icon {
        width: 60px;
        height: 60px;
    }
    
    .why-icon i {
        font-size: 1.5rem;
    }
    
    .services-cta {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .btn-cta {
        width: 180px;
        padding: 10px 20px;
    }
    
    .categories {
        padding: 50px 0;
    }
}

/* Shop Page Styles */
.shop-header {
    background: linear-gradient(135deg, #007bff, #ffc107);
    color: white;
    padding: 80px 0 40px;
    margin-top: 80px;
    text-align: center;
}

.shop-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.shop-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.shop-content {
    padding: 40px 0;
    background: #f8f9fa;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Shop Sidebar */
.shop-sidebar {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.category-section h3,
.filter-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

/* Accordion Categories */
.accordion-categories {
    margin-bottom: 30px;
}

.accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
}

.accordion-item.active {
    border-color: #007bff;
}

.accordion-header {
    padding: 12px 15px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-weight: 500;
}

.accordion-header:hover,
.accordion-item.active .accordion-header {
    background: #007bff;
    color: white;
}

.accordion-icon {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.accordion-item.open .accordion-icon {
    transform: rotate(180deg);
}

.accordion-item.open .accordion-header {
    background: #007bff;
    color: white;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.accordion-item.open .accordion-content {
    max-height: 1000px;
}

/* Subcategory Styles */
.subcategory-item {
    border-bottom: 1px solid #f0f0f0;
}

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

.subcategory-header {
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    background: #fafafa;
}

.subcategory-header:hover {
    background: #e9ecef;
    color: #007bff;
}

.sub-icon {
    transition: transform 0.3s ease;
    font-size: 0.7rem;
}

.subcategory-item.open .sub-icon {
    transform: rotate(180deg);
}

.subcategory-item.open .subcategory-header {
    background: #ffc107;
    color: #333;
}

.subcategory-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.subcategory-item.open .subcategory-content {
    max-height: 300px;
}

/* Sub-subcategory Styles */
.sub-subcategory {
    padding: 8px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: #666;
    border-left: 3px solid transparent;
}

.sub-subcategory:hover {
    background: #f8f9fa;
    color: #007bff;
    border-left-color: #007bff;
    padding-left: 35px;
}

.sub-subcategory.active {
    background: #e3f2fd;
    color: #007bff;
    border-left-color: #007bff;
    font-weight: 500;
}

.count {
    font-size: 0.85rem;
    opacity: 0.7;
    background: #e9ecef;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.accordion-header:hover .count,
.accordion-item.active .accordion-header .count {
    background: rgba(255,255,255,0.2);
    color: white;
}

.accordion-item.open .accordion-header .count {
    background: rgba(255,255,255,0.3);
    color: white;
}

.subcategory-item.open .subcategory-header .count {
    background: rgba(0,0,0,0.1);
    color: #333;
}

.price-filter {
    margin-top: 15px;
}

.price-slider {
    width: 100%;
    margin-bottom: 10px;
}

.price-range {
    text-align: center;
    font-weight: 500;
    color: #007bff;
}

/* Shop Main Content */
.shop-main {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.results-count {
    font-weight: 500;
    color: #666;
}

.sort-options select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    font-size: 0.9rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    z-index: 2;
}

.product-badge:not(.new):not(.hot) {
    background: #ffc107;
    color: #333;
    font-weight: 600;
}

.product-badge.new {
    background: #007bff;
}

.product-badge.hot {
    background: #dc3545;
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.product-actions button,
.product-actions a {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: white;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.product-actions button:hover,
.product-actions a:hover {
    background: linear-gradient(45deg, #007bff, #ffc107);
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-info h4 {
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.product-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.product-rating span {
    font-size: 0.9rem;
    color: #666;
    margin-left: 5px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #007bff;
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.discount {
    background: #28a745;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-add-cart {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #007bff, #ffc107);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: linear-gradient(45deg, #0056b3, #e0a800);
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 30px;
    border-top: 1px solid #eee;
}

.page-btn {
    padding: 10px 15px;
    border: 1px solid #ddd;
    background: white;
    color: #333;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover,
.page-btn.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

/* Product Detail Page Styles */
.product-detail {
    padding: 120px 0 60px;
    background: #f8f9fa;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.product-gallery {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.main-image {
    width: 100%;
    height: 400px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-container {
    width: 100%;
    height: 100%;
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail.active {
    border-color: #007bff;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-thumb {
    background: #333;
    color: white;
    flex-direction: column;
    font-size: 0.8rem;
}

.video-thumb i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.product-info {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-info h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars i {
    color: #ffc107;
    font-size: 1.1rem;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
}

.price-section {
    margin-bottom: 30px;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: #007bff;
    margin-right: 15px;
}

.original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.discount {
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-options {
    margin-bottom: 30px;
}

.option-group {
    margin-bottom: 20px;
}

.option-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.option-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-add-cart,
.btn-buy-now {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-cart,
.btn-buy-now,
.btn-wishlist {
    background: linear-gradient(45deg, #007bff, #ffc107) !important;
    color: white !important;
    border: none !important;
    transition: all 0.3s ease;
}

.btn-add-cart:hover,
.btn-buy-now:hover,
.btn-wishlist:hover {
    background: linear-gradient(45deg, #0056b3, #e0a800);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.btn-wishlist {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-features h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.product-features ul {
    list-style: none;
}

.product-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features i {
    color: #28a745;
    font-size: 0.9rem;
}

.product-description {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.description-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
}

.tab-btn {
    flex: 1;
    padding: 15px;
    border: none;
    background: #f8f9fa;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s;
}

.tab-btn.active {
    background: white;
    color: #007bff;
    border-bottom: 2px solid #007bff;
}

.tab-content {
    padding: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    margin-bottom: 20px;
    color: #333;
}

.tab-pane table {
    width: 100%;
    border-collapse: collapse;
}

.tab-pane table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.tab-pane table td:first-child {
    font-weight: 600;
    width: 30%;
}

.review-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-name {
    font-weight: 600;
}

.review-stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

/* Cart Page Styles */
.cart-section {
    padding: 120px 0 60px;
    background: #f8f9fa;
    min-height: 70vh;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
}

.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.cart-items {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr 120px 100px 50px;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

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

.item-image img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #eee;
}

.item-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.item-options {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.item-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.item-price .current-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #007bff;
}

.item-price .original-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: #f8f9fa;
    cursor: pointer;
    border-radius: 3px;
    font-weight: 600;
    color: #333;
}

.qty-btn:hover {
    background: #007bff;
    color: white;
}

.qty-value {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.item-total {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-align: right;
}

.remove-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #dc3545;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.remove-btn:hover {
    background: #c82333;
}

.cart-summary {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.cart-summary h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1rem;
}

.summary-row.discount {
    color: #28a745;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-top: 15px;
}

.promo-code {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.promo-code input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
}

.promo-code button {
    padding: 10px 15px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.btn-continue-shopping,
.btn-checkout {
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-continue-shopping {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
}

.btn-continue-shopping:hover {
    background: #e9ecef;
}

.btn-checkout {
    background: linear-gradient(45deg, #007bff, #ffc107);
    color: white;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

/* Auth Page Styles - Perfect 50-50 Split Layout */
.auth-main-container {
    display: flex !important;
    min-height: 70vh !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Left Section - Image (50%) */
.auth-image-section {
    flex: 1 !important;
    background: #f8f9fa !important;
}

.auth-image-section img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Right Section - Forms (50%) */
.auth-form-section {
    flex: 1 !important;
    background: white !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    padding: 0 !important;
}

/* Tab Buttons */
.auth-tab-buttons {
    display: flex !important;
    border-bottom: 1px solid #e9ecef !important;
    background: #f8f9fa !important;
    position: relative !important;
    z-index: 10 !important;
    min-height: 60px !important;
}

.tab-btn {
    flex: 1 !important;
    padding: 20px !important;
    border: none !important;
    background: transparent !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #666 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.tab-btn:hover {
    background: rgba(0,123,255,0.1) !important;
    color: #007bff !important;
}

.tab-btn.active {
    background: white !important;
    color: #007bff !important;
}

.tab-btn.active::after {
    content: '' !important;
    position: absolute !important;
    bottom: -1px !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(45deg, #007bff, #ffc107) !important;
}

/* Form Container */
.form-container {
    display: none;
    flex: 1;
    padding: 60px 40px;
    flex-direction: column;
    justify-content: center;
    max-width: 669px;
    margin: 0 auto;
    width: 100%;
}

.form-container.active {
    display: flex !important;
}

.form-container.active {
    display: flex !important;
}

.form-container {
    display: none;
    flex: 1;
    padding: 60px 40px;
    flex-direction: column;
    justify-content: center;
    max-width: 669px;
    margin: 0 auto;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.form-container h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

/* Input Groups */
.input-group {
    margin-bottom: 20px;
}

.input-row {
    display: flex;
    gap: 15px;
}

.input-row .input-group {
    flex: 1;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    box-sizing: border-box;
}

.input-group input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

/* Password Input */
.password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.toggle-password:hover {
    color: #007bff;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.checkbox {
    display: flex;
    align-items: center;
    color: #666;
    cursor: pointer;
}

.checkbox input {
    width: auto;
    margin-right: 8px;
}

.forgot-password {
    color: #007bff;
    text-decoration: none;
    transition: all 0.3s;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #007bff, #ffc107);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .auth-main-container {
        flex-direction: column;
    }
    
    .auth-image-section {
        min-height: 200px;
    }
    
    .form-container {
        padding: 40px 20px;
    }
    
    .form-container h2 {
        font-size: 1.8rem;
    }
    
    .input-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Checkout Page Styles */
.checkout-section {
    padding: 120px 0 60px;
    background: #f8f9fa;
    min-height: 80vh;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.checkout-forms {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-section {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
}

.form-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    color: #007bff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #007bff;
}

.saved-addresses {
    margin-bottom: 30px;
}

.saved-addresses h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.address-options {
    display: grid;
    gap: 15px;
}

.address-option {
    position: relative;
}

.address-card {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s;
    background: white;
    position: relative;
}

.address-card.selected {
    border-color: #007bff;
    background: #f8f9fa;
}

.address-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
}

.btn-select-address {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-address:hover {
    background: #0056b3;
}

.address-card.selected .btn-select-address {
    background: #28a745;
}

.address-card.selected .btn-select-address:after {
    content: ' ✓';
}

.btn-remove-address {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-remove-address:hover {
    background: #c82333;
    transform: scale(1.1);
}

.address-type {
    font-weight: 600;
    color: #007bff;
    font-size: 0.9rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.address-details {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.new-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 80px;
    border-style: dashed;
    color: #007bff;
    font-weight: 500;
    cursor: pointer;
}

.new-address:hover {
    background: #f8f9fa;
    border-color: #007bff;
}

.new-address i {
    font-size: 1.2rem;
}

.payment-options {
    margin-bottom: 20px;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option:hover {
    border-color: #007bff;
    background: #f8f9fa;
}

.payment-option input[type="radio"] {
    margin-right: 15px;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    margin: 0;
}

.payment-option i {
    color: #007bff;
    font-size: 1.1rem;
}

.payment-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.order-summary {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.order-summary h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.order-items {
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

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

.order-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 5px;
    border: 1px solid #eee;
}

.item-info {
    flex: 1;
}

.item-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.item-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.item-price {
    font-weight: 600;
    color: #333;
}

.order-totals {
    margin-bottom: 30px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
}

.total-row.discount {
    color: #28a745;
}

.total-row.final {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-top: 15px;
}

.btn-place-order {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #007bff, #ffc107);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-place-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.security-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    justify-content: center;
}

.security-info i {
    color: #28a745;
}

/* Auth Page Styles */
.auth-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.auth-container {
    max-width: 450px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
}

.auth-tabs {
    display: flex;
    background: #f8f9fa;
}

.auth-tab {
    flex: 1;
    padding: 20px;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: #666;
}

.auth-tab.active {
    background: white;
    color: #007bff;
    border-bottom: 3px solid #007bff;
}

.auth-form {
    display: none;
    padding: 40px;
}

.auth-form.active {
    display: block;
}

.auth-form h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    text-align: center;
}

.auth-form p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.password-field {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1rem;
}

.toggle-password:hover {
    color: #007bff;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.forgot-password {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-auth {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #007bff, #ffc107);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 25px;
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.social-login {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.social-login p {
    margin-bottom: 20px;
    color: #666;
    font-size: 0.9rem;
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.btn-social {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

.btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-social.google {
    color: #db4437;
    border-color: #db4437;
}

.btn-social.google:hover {
    background: #db4437;
    color: white;
}

.btn-social.facebook {
    color: #4267B2;
    border-color: #4267B2;
}

.btn-social.facebook:hover {
    background: #4267B2;
    color: white;
}

/* Specific styling for registration form */
.auth-register-form {
    max-width: 669px !important;
}

/* Responsive Auth */
@media (max-width: 768px) {
    .auth-section {
        padding: 100px 0 40px;
    }
    
    .auth-container {
        margin: 0 20px;
        max-width: none;
    }
    
    .auth-form {
        padding: 30px 25px;
    }
    
    .auth-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .auth-tab {
        padding: 15px;
        font-size: 0.9rem;
    }
}

/* Responsive Checkout */
@media (max-width: 992px) {
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .order-summary {
        position: static;
        order: -1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .address-options {
        gap: 10px;
    }
    
    .address-card {
        padding: 12px;
    }
    
    .address-details {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .checkout-section {
        padding: 100px 0 40px;
    }
    
    .form-section,
    .order-summary {
        padding: 20px;
    }
    
    .order-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .order-item img {
        width: 50px;
        height: 50px;
    }
    
    .payment-option {
        padding: 12px;
    }
    
    .payment-option label {
        font-size: 0.9rem;
    }
}

/* Responsive Cart */
@media (max-width: 992px) {
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cart-summary {
        position: static;
        order: -1;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr 100px;
        gap: 15px;
    }
    
    .item-quantity {
        grid-column: 2;
        justify-self: start;
        margin-top: 10px;
    }
    
    .item-total {
        grid-column: 3;
        grid-row: 1;
    }
    
    .remove-btn {
        grid-column: 3;
        grid-row: 2;
        justify-self: end;
    }
}

@media (max-width: 768px) {
    .cart-section {
        padding: 100px 0 40px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .cart-items,
    .cart-summary {
        padding: 20px;
    }
    
    .cart-item {
        grid-template-columns: 60px 1fr;
        gap: 15px;
        padding: 15px 0;
    }
    
    .item-image img {
        width: 60px;
        height: 60px;
    }
    
    .item-quantity,
    .item-total,
    .remove-btn {
        grid-column: 2;
        justify-self: start;
        margin-top: 10px;
    }
    
    .item-total {
        font-size: 1.1rem;
    }
    
    .cart-actions {
        margin-top: 20px;
    }
}

/* Responsive Product Detail */
@media (max-width: 992px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-wishlist {
        width: 100%;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .product-detail {
        padding: 100px 0 40px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-info h1 {
        font-size: 1.5rem;
    }
    
    .current-price {
        font-size: 1.5rem;
    }
    
    .description-tabs {
        flex-direction: column;
    }
    
    .tab-content {
        padding: 20px;
    }
}

/* Thank You page styles */
.thankyou-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
}

.thankyou-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 30px;
}

.thankyou-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.thankyou-message {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.order-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: left;
}

.order-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.order-info {
    max-width: 400px;
    margin: 0 auto;
}

.order-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.order-row:last-child {
    border-bottom: none;
}

.order-row .label {
    font-weight: 500;
    color: #666;
}

.order-row .value {
    font-weight: 600;
    color: #333;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step {
    text-align: center;
}

.step i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 15px;
}

.step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .thankyou-content {
        padding: 40px 20px;
        margin: 20px;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .success-icon {
        font-size: 3rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* My Account Page Styles */
.account-section {
    padding: 120px 0 60px;
    background: #f8f9fa;
    min-height: 80vh;
}

.account-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 40px;
}

.account-sidebar {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.user-info {
    text-align: center;
    padding: 30px 20px;
    border-bottom: 1px solid #eee;
}

.user-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #007bff, #ffc107);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    color: white;
}

.user-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.user-info p {
    color: #666;
    font-size: 0.9rem;
}

.account-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.account-nav .nav-link:hover,
.account-nav .nav-link.active {
    background: #f8f9fa;
    color: #007bff;
    border-left-color: #007bff;
}

.account-nav .nav-link.logout {
    color: #dc3545;
    border-top: 1px solid #eee;
}

.account-nav .nav-link.logout:hover {
    background: #f8f9fa;
    color: #dc3545;
    border-left-color: #dc3545;
}

.account-main {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.tab-content {
    display: none;
    padding: 30px;
}

.tab-content.active {
    display: block;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.content-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
}

.btn-edit,
.btn-add {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-edit:hover,
.btn-add:hover {
    background: #0056b3;
}

.profile-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.profile-form .form-group {
    margin-bottom: 20px;
}

.profile-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.profile-form input,
.profile-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.profile-form input:focus,
.profile-form select:focus {
    outline: none;
    border-color: #007bff;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-save,
.btn-cancel {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-save {
    background: #28a745;
    color: white;
}

.btn-save:hover {
    background: #218838;
}

.btn-cancel {
    background: #6c757d;
    color: white;
}

.btn-cancel:hover {
    background: #5a6268;
}

.order-filters {
    display: flex;
    gap: 10px;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s;
}

.order-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.order-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.order-info p {
    color: #666;
    font-size: 0.9rem;
}

.order-status {
    text-align: right;
}

.status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.status.processing {
    background: #fff3cd;
    color: #856404;
}

.status.delivered {
    background: #d4edda;
    color: #155724;
}

.status.cancelled {
    background: #f8d7da;
    color: #721c24;
}

.order-total {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.order-items {
    margin-bottom: 15px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.order-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 5px;
    border: 1px solid #eee;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.item-details p {
    font-size: 0.9rem;
    color: #666;
}

.item-price {
    font-weight: 600;
    color: #333;
}

.order-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-track,
.btn-reorder,
.btn-review {
    padding: 8px 16px;
    border: 1px solid #007bff;
    background: white;
    color: #007bff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-track:hover,
.btn-reorder:hover,
.btn-review:hover {
    background: #007bff;
    color: white;
}

.order-actions .btn-cancel {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
    padding: 8px 16px;
    font-size: 0.9rem;
}

.order-actions .btn-cancel:hover {
    background: #c82333;
}

.addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.address-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    position: relative;
    transition: all 0.3s;
}

.address-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.address-type {
    font-weight: 600;
    color: #007bff;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.address-details {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.address-actions {
    display: flex;
    gap: 10px;
}

.btn-edit-addr,
.btn-delete-addr {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.btn-edit-addr {
    background: #007bff;
    color: white;
}

.btn-edit-addr:hover {
    background: #0056b3;
}

.btn-delete-addr {
    background: #dc3545;
    color: white;
}

.btn-delete-addr:hover {
    background: #c82333;
}

.item-count {
    color: #666;
    font-size: 0.9rem;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.wishlist-item {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s;
}

.wishlist-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.wishlist-item img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 15px;
}

.wishlist-item .item-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.wishlist-item .item-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 15px;
}

.wishlist-item .item-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-add-cart,
.btn-remove-wish {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-add-cart {
    background: #007bff;
    color: white;
}

.btn-add-cart:hover {
    background: #0056b3;
}

.btn-remove-wish {
    background: #dc3545;
    color: white;
}

.btn-remove-wish:hover {
    background: #c82333;
}

.settings-sections {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.setting-section {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
}

.setting-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.setting-option {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #007bff;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

@media (max-width: 992px) {
    .account-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .account-sidebar {
        position: static;
        order: 2;
    }
    
    .account-main {
        order: 1;
    }
    
    .user-info {
        display: flex;
        align-items: center;
        gap: 20px;
        text-align: left;
    }
    
    .user-avatar {
        margin: 0;
    }
    
    .account-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .account-nav .nav-link {
        border: 1px solid #ddd;
        border-radius: 20px;
        padding: 8px 16px;
        border-left: 1px solid #ddd;
    }
    
    .account-nav .nav-link.active {
        background: #007bff;
        color: white;
        border-color: #007bff;
    }
}

@media (max-width: 768px) {
    .account-section {
        padding: 100px 0 40px;
    }
    
    .tab-content {
        padding: 20px;
    }
    
    .content-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .profile-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .order-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .order-status {
        text-align: left;
    }
    
    .order-actions {
        justify-content: flex-start;
    }
    
    .addresses-grid,
    .wishlist-grid {
        grid-template-columns: 1fr;
    }
    
    .user-info {
        flex-direction: column;
        text-align: center;
    }
    
    .account-nav ul {
        justify-content: center;
    }
}

/* Responsive Shop Styles */
@media (max-width: 1200px) {
    .shop-layout {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .shop-sidebar {
        position: static;
        order: 2;
    }
    
    .shop-main {
        order: 1;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .shop-header {
        padding: 60px 0 30px;
    }
    
    .shop-header h1 {
        font-size: 2rem;
    }
    
    .shop-toolbar {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        padding: 20px;
    }
    
    .shop-sidebar {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .page-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}