/* Base Styles */
:root {
    --primary-color: #58C4B4; /* Green brand color */
    --primary-dark: #58C4B4;
    --primary-light: #81c784;
    --secondary-color: #fbc02d;
    --dark-color: #212121;
    --light-color: #f5f5f5;
    --gray-color: #757575;
    --light-gray: #e0e0e0;
    --white: #ffffff;
    --black: #000000;
    --success-color: #58C4B4;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --border-radius: 4px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Stock Status Styles */
.size-selector option.out-of-stock {
    color: #c62828;
    position: relative;
}

.size-selector option.out-of-stock::after {
    content: " (Out of Stock)";
    color: #c62828;
    font-size: 0.9em;
}

.size-selector:disabled {
    opacity: 0.7;
    background-color: #f5f5f5;
}

.product-card.out-of-stock .add-to-cart {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* Mobile Menu Toggle Button (Hamburger Icon) */
.mobile-menu-toggle {
    background-color: #58C4B4 !important; /* Green color */
    color: white !important;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 20px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    background-color: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.section-title {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}


.product-details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.product-details {
    display: flex;
    gap: 30px;
}

.product-image {
    flex: 1;
}

.product-image img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.product-info {
    flex: 1;
}

@media (max-width: 768px) {
    .product-details {
        flex-direction: column;
    }
}
                 

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offer-text {
    font-weight: 500;
}

.top-links a {
    color: var(--white);
    margin-left: 20px;
    transition: var(--transition);
}

.top-links a:hover {
    color: var(--primary-light);
}

.top-links i {
    margin-right: 5px;
}

/* Header */
.header {
    padding: 20px 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px;
    border-radius: 20px;
}

.search-box {
    display: flex;
    width: 50%;
    max-width: 500px;
}

.search-box input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    outline: none;
}

.search-box button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0 15px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
}

.user-actions {
    display: flex;
    gap: 20px;
}

.user-actions a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    transition: var(--transition);
}

.user-actions a:hover {
    color: var(--primary-color);
}

.cart-count {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}

/* Navigation */
.main-nav {
    background-color: var(--primary-color);
    color: var(--white);
}

.main-nav ul {
    display: flex;
    justify-content: center;
}

.main-nav li {
    position: relative;
}

.main-nav li a {
    display: block;
    padding: 15px 20px;
    font-weight: 500;
    transition: var(--transition);
}

.main-nav li a:hover {
    background-color: var(--primary-dark);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    width: 200px;
    box-shadow: var(--box-shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 10;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    color: var(--dark-color);
    padding: 10px 15px;
}

.dropdown-menu a:hover {
    background-color: var(--primary-color);
    color: var(--primary-color);
}

.dropdown-column {
    padding: 15px;
}

.dropdown-column h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 16px;
}
/* Customer Service Popup Styles */
        .service-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .service-popup-content {
            background: white;
            padding: 30px;
            border-radius: 10px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }
        
        .close-popup {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #333;
        }
        
        .service-popup h3 {
            margin-top: 0;
            color: #8e6c88;
        }
        
        .service-item {
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .service-item:hover {
            color: #8e6c88;
        }
        
        .service-content h4 {
            margin-top: 20px;
            color: #555;
        }
        
        .service-content p {
            margin-bottom: 15px;
            line-height: 1.6;
        }
/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('Ocean.JPG');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Featured Categories */
.featured-categories {
    padding: 60px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 250px;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: var(--white);
}

.category-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.category-info a {
    display: inline-block;
    background-color: var(--white);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.category-info a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Featured Products */
.featured-products {
    padding: 60px 0;
    background-color: var(--light-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    z-index: 1;
}

.product-badge.new {
    background-color: var(--secondary-color);
}

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

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

.quick-view, .add-to-wishlist {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.quick-view:hover, .add-to-wishlist:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.product-info {
    padding: 15px;
}

.product-title {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

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

.current-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.old-price {
    font-size: 14px;
    color: var(--gray-color);
    text-decoration: line-through;
}

.add-to-cart {
    width: 100%;
    padding: 8px;
    font-size: 14px;
}

.view-all {
    text-align: center;
    margin-top: 30px;
}

/* About Section */
.about-section {
    padding: 60px 0;
}

.about-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: 15px;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #58C4B4;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.toast-notification.show {
    opacity: 1;
}

/* Wishlist button state */
.add-to-wishlist .fas {
    display: none;
    color: #f44336;
}

.add-to-wishlist.active .far {
    display: none;
}

.add-to-wishlist.active .fas {
    display: inline-block;
}

/* Size selection */
.size-option {
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-block;
}

.size-option:hover {
    background-color: #f5f5f5;
}

.size-option.selected {
    background-color: #58C4B4;
    color: white;
    border-color: #58C4B4;
}


/* Testimonials */
.testimonials {
    padding: 60px 0;
    background-color: var(--light-color);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin: 0 15px;
}

.testimonial-text p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text p::before,
.testimonial-text p::after {
    content: '"';
    font-size: 24px;
    color: var(--primary-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Size Options Styling */
.product-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.size-option {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-option.selected {
    background-color: #58C4B4;
    color: white;
    border-color: #58C4B4;
}

.size-option:hover {
    border-color: #58C4B4;
}

/* Size Guide Styling */
.size-guide-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.size-guide {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
}

.size-comparison-image {
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.size-descriptions {
    flex: 1;
}

.size-item {
    margin-bottom: 20px;
}

.size-item h3 {
    color: #58C4B4;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .size-guide {
        flex-direction: column;
    }
    
    .size-comparison-image {
        max-width: 100%;
    }
}
/* Add to your style.css */
.checkout-page {
    padding: 40px 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.delivery-payment-section, 
.order-summary-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.payment-methods {
    margin: 20px 0;
}

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

.payment-option input {
    margin-right: 10px;
}

.payment-option span {
    flex: 1;
}

.payment-option i {
    margin-left: 10px;
    font-size: 20px;
    color: #555;
}

.discount-input {
    display: flex;
    margin-top: 8px;
}

.discount-input input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}

.discount-input button {
    padding: 0 20px;
    background: #58C4B4;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

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

.item-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.item-info img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.order-totals {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

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

.grand-total {
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
}

#complete-order {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}
.rating {
    color: var(--secondary-color);
}

/* Newsletter */
.newsletter {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.newsletter .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsletter-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    width: 50%;
    max-width: 500px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form button {
    background-color: var(--dark-color);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
}

/* Instagram Feed */
.instagram-feed {
    padding: 60px 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.instagram-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.instagram-grid img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
}

.footer-top {
    padding: 60px 0 30px;
}

.footer-top .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-column ul li a {
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-methods {
    display: flex;
    gap: 10px;
}

.payment-methods img {
    height: 25px;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--white);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--border-radius);
    position: relative;
    padding: 30px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

.product-quick-view {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--white);
    z-index: 1000;
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.close-mobile-menu {
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav ul li a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid var(--light-gray);
    font-weight: 500;
}

.mobile-dropdown-menu {
    display: none;
    background-color: var(--light-color);
}

.mobile-dropdown-menu li a {
    padding-left: 40px !important;
}

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

.mobile-user-actions {
    padding: 15px;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid var(--light-gray);
}

.mobile-menu-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

/* Shop Page */
.shop-page {
    padding: 60px 0;
}

.page-header {
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.breadcrumbs {
    font-size: 14px;
    color: var(--gray-color);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.shop-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

.shop-sidebar {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: fit-content;
}

.sidebar-widget {
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-gray);
}

.sidebar-widget ul li {
    margin-bottom: 8px;
}

.sidebar-widget ul li a {
    display: block;
    padding: 5px 0;
    transition: var(--transition);
}

.sidebar-widget ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.price-slider {
    height: 5px;
    background-color: var(--light-gray);
    border-radius: 5px;
    margin-bottom: 15px;
    position: relative;
}

.price-slider .progress {
    height: 100%;
    left: 0;
    right: 0;
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 5px;
}

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

.price-input input {
    width: 100%;
    padding: 5px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
}

.btn-filter {
    width: 100%;
    padding: 8px;
    font-size: 14px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags a {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 12px;
    transition: var(--transition);
}

.tags a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.view-mode {
    display: flex;
    gap: 10px;
}

.view-mode button {
    width: 35px;
    height: 35px;
    background-color: var(--light-gray);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.view-mode button.active, .view-mode button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.sort-by {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-by select {
    padding: 8px 12px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--light-gray);
    margin: 0 5px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.pagination a.active, .pagination a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Product Detail Page */
.product-page {
    padding: 60px 0;
}

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

.product-gallery {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 15px;
}

.main-image {
    grid-column: 1 / -1;
    height: 500px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.thumbnail-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.thumbnail-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.thumbnail-images img:hover {
    border-color: var(--primary-color);
}

.product-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.product-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--gray-color);
}

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

.review-link {
    color: var(--gray-color);
}

.review-link:hover {
    color: var(--primary-color);
}

.product-price {
    margin: 20px 0;
}

.product-price .current {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
}

.product-price .old {
    font-size: 18px;
    text-decoration: line-through;
    color: var(--gray-color);
}

.product-price .discount {
    background-color: var(--error-color);
    color: var(--white);
    padding: 3px 8px;
    border-radius: var(--border-radius);
    font-size: 14px;
    margin-left: 10px;
}

.product-variations {
    margin: 20px 0;
}

.variation {
    margin-bottom: 15px;
}

.variation label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.variation select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
}

.quantity {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.quantity button {
    width: 30px;
    height: 30px;
    background-color: var(--light-gray);
    border: none;
    cursor: pointer;
}

.quantity input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--light-gray);
    border-left: none;
    border-right: none;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.product-actions .add-to-cart {
    flex: 1;
}

.add-to-wishlist {
    width: 45px;
    height: 45px;
    background-color: var(--light-gray);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.add-to-wishlist:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.product-meta-bottom {
    margin: 20px 0;
    font-size: 14px;
}

.product-meta-bottom span {
    font-weight: 500;
}

.product-meta-bottom a {
    color: var(--primary-color);
}

.product-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.product-share a {
    width: 35px;
    height: 35px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.product-share a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.product-tabs {
    margin-bottom: 60px;
}

.tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 30px;
}

.tabs-nav li {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 500;
    position: relative;
}

.tabs-nav li.active {
    color: var(--primary-color);
}

.tabs-nav li.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.tab-panel {
    display: none;
}

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

.tab-panel h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.tab-panel p {
    margin-bottom: 15px;
}

.tab-panel ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.tab-panel ul li {
    list-style: disc;
    margin-bottom: 8px;
}

.review-summary {
    display: flex;
    gap: 50px;
    margin-bottom: 30px;
}

.average-rating {
    text-align: center;
}

.average-rating .average {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.rating-bars {
    flex: 1;
}

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

.rating-bar .bar {
    flex: 1;
    height: 10px;
    background-color: var(--light-gray);
    border-radius: 5px;
    overflow: hidden;
}

.rating-bar .fill {
    height: 100%;
    background-color: var(--secondary-color);
}

.review-form h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

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

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

.rating-input {
    display: flex;
    gap: 5px;
}

.rating-input input {
    display: none;
}

.rating-input label {
    font-size: 20px;
    color: var(--light-gray);
    cursor: pointer;
}

.rating-input input:checked ~ label {
    color: var(--secondary-color);
}

.rating-input label:hover,
.rating-input label:hover ~ label {
    color: var(--secondary-color);
}

.form-group textarea,
.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
}

.review-list {
    margin-top: 30px;
}

.review-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--light-gray);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.review-author {
    font-weight: 500;
}

.review-date {
    color: var(--gray-color);
    font-size: 14px;
}

.related-products {
    margin-top: 60px;
}

/* Cart Page */
.cart-page {
    padding: 60px 0;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.cart-table th {
    text-align: left;
    padding: 15px;
    background-color: var(--light-gray);
    font-weight: 500;
}

.cart-table td {
    padding: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.cart-product-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.cart-product-info p {
    font-size: 14px;
    color: var(--gray-color);
}

.cart-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-quantity button {
    width: 25px;
    height: 25px;
    background-color: var(--light-gray);
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.cart-quantity input {
    width: 40px;
    text-align: center;
}

.remove-item {
    color: var(--error-color);
    cursor: pointer;
}

.cart-totals {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.cart-totals h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-gray);
}

.cart-totals-table {
    width: 100%;
    margin-bottom: 20px;
}

.cart-totals-table tr:not(:last-child) td {
    padding-bottom: 10px;
}

.cart-totals-table td:last-child {
    text-align: right;
    font-weight: 500;
}

.cart-totals-table tr:last-child td {
    padding-top: 10px;
    border-top: 1px solid var(--light-gray);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.checkout-btn {
    width: 100%;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.coupon-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
}

.coupon-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
}

.update-cart {
    background-color: var(--gray-color);
}

.update-cart:hover {
    background-color: var(--dark-color);
}

/* Checkout Page */
.checkout-page {
    padding: 60px 0;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.checkout-step {
    position: relative;
    padding: 0 30px;
    text-align: center;
}

.checkout-step.active .step-number {
    background-color: var(--primary-color);
    color: var(--white);
}

.checkout-step.active .step-title {
    color: var(--primary-color);
}

.checkout-step.completed .step-number {
    background-color: var(--success-color);
    color: var(--white);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 500;
}

.step-title {
    font-weight: 500;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.checkout-form h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

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

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

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

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
}

.order-summary {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: fit-content;
}

.order-summary h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-gray);
}

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

.order-product {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.order-product-name {
    flex: 1;
}

.order-totals {
    width: 100%;
    margin-bottom: 20px;
}

.order-totals tr:not(:last-child) td {
    padding-bottom: 10px;
}

.order-totals td:last-child {
    text-align: right;
}

.order-totals tr:last-child td {
    padding-top: 10px;
    border-top: 1px solid var(--light-gray);
    font-weight: 600;
    color: var(--primary-color);
}

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

.payment-method {
    margin-bottom: 10px;
}

.payment-method label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.place-order-btn {
    width: 100%;
}

/* Account Page */
.account-page {
    padding: 60px 0;
}

.account-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

.account-sidebar {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: fit-content;
}

.account-nav li {
    margin-bottom: 10px;
}

.account-nav li a {
    display: block;
    padding: 10px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.account-nav li a.active, 
.account-nav li a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.account-details {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.account-details h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.account-info p {
    margin-bottom: 15px;
}

.account-info strong {
    font-weight: 500;
    min-width: 150px;
    display: inline-block;
}

.order-history {
    margin-top: 40px;
}

.order-history h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

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

.order-table th {
    text-align: left;
    padding: 15px;
    background-color: var(--light-gray);
    font-weight: 500;
}

.order-table td {
    padding: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.order-status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-size: 12px;
    font-weight: 500;
}

.order-status.pending {
    background-color: var(--warning-color);
    color: var(--white);
}

.order-status.completed {
    background-color: var(--success-color);
    color: var(--white);
}

.order-status.cancelled {
    background-color: var(--error-color);
    color: var(--white);
}

.view-order {
    color: var(--primary-color);
}

/* Admin Dashboard */
.admin-header {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 15px 0;
}

.admin-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-logo {
    font-size: 20px;
    font-weight: 600;
}

.admin-nav ul {
    display: flex;
    gap: 20px;
}

.admin-nav a {
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}

.admin-nav a:hover {
    color: var(--primary-light);
}

.admin-main {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: calc(100vh - 60px);
}

.admin-sidebar {
    background-color: #f5f5f5;
    padding: 20px 0;
    border-right: 1px solid var(--light-gray);
}

.admin-menu li {
    margin-bottom: 5px;
}

.admin-menu a {
    display: block;
    padding: 10px 20px;
    transition: var(--transition);
}

.admin-menu a:hover, 
.admin-menu a.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.admin-menu i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

.admin-content {
    padding: 30px;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.dashboard-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.dashboard-card h3 {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--gray-color);
}

.dashboard-card .value {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
}

.recent-orders {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.recent-orders h2 {
    font-size: 20px;
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-section .container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-top .container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-content {
        grid-template-columns: 1fr;
    }
    
    .product-details {
        grid-template-columns: 1fr;
    }
    
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .account-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-box {
        width: 100%;
    }
    
    .newsletter .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .newsletter-form {
        width: 100%;
    }
    
    .dashboard-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Additional styles for interactive shop */
        .category-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .category-btn {
            padding: 8px 15px;
            background-color: #f5f5f5;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid #ddd;
        }
        
        .category-btn:hover, .category-btn.active {
            background-color: #2e7d32;
            color: white;
            border-color: #2e7d32;
        }
        
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 5px;
        }
        
        .page-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .page-btn:hover, .page-btn.active {
            background-color: #2e7d32;
            color: white;
            border-color: #2e7d32;
        }
        
        .page-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        /* Loading animation */
        .loading {
            display: none;
            text-align: center;
            padding: 20px;
        }
        
        .loading-spinner {
            border: 4px solid rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            border-top: 4px solid #2e7d32;
            width: 30px;
            height: 30px;
            animation: spin 1s linear infinite;
            margin: 0 auto 10px;
        }
        
        /* Toast notifications */
.toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #2e7d32;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 16px;
    position: fixed;
    z-index: 1100;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.5s, bottom 0.5s;
}

.toast.show {
    visibility: visible;
    bottom: 50px;
    opacity: 1;
}

/* Cart page styles */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    position: relative;
}

.cart-item-image {
    width: 100px;
    height: 100px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.cart-item-details .price {
    font-weight: bold;
    color: #2e7d32;
    margin: 10px 0;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    margin: 0 5px;
}

.cart-item-total {
    text-align: right;
    min-width: 120px;
}

.cart-item-total p {
    font-weight: bold;
    font-size: 18px;
    margin: 0 0 10px 0;
}

.remove-item {
    background: none;
    border: none;
    color: #d32f2f;
    cursor: pointer;
    font-size: 16px;
}

.cart-summary {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

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

.cart-summary-row.total {
    font-weight: bold;
    font-size: 18px;
    border-bottom: none;
}

.cart-empty {
    text-align: center;
    padding: 50px 0;
    display: none;
}

.cart-empty i {
    font-size: 50px;
    color: #ddd;
    margin-bottom: 20px;
}

.cart-empty h2 {
    margin-bottom: 20px;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: #2e7d32;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
}

.checkout-btn:hover {
    background: #1b5e20;
}

/* Wishlist styles */
.wishlist-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
}

.wishlist-item-image {
    width: 100px;
    height: 100px;
}

.wishlist-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.wishlist-item-details {
    flex: 1;
}

.wishlist-item-details h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.wishlist-item-price {
    font-weight: bold;
    color: #2e7d32;
    margin: 10px 0;
}

.wishlist-item-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.move-to-cart, .remove-wishlist {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.move-to-cart {
    background: #2e7d32;
    color: white;
}

.remove-wishlist {
    background: #f5f5f5;
    color: #d32f2f;
}
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .admin-main {
        grid-template-columns: 1fr;
    }
    
    .admin-sidebar {
        display: none;
    }
    
    .dashboard-cards {
        grid-template-columns: 1fr;
    }
}
