/* Google Material Icons */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

/* Alert Styles */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: #01342c;
    color: white;
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.top-bar-info a {
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.top-bar-info a:hover {
    color: #00fbff;
}

.top-bar-info .material-icons {
    font-size: 18px;
}

/* Header Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: #3e8b7f;
}

.nav-menu .active {
    color: #3e8b7f;
    border-bottom: 2px solid #3e8b7f;
    padding-bottom: 0.25rem;
}

/* Cart Icon */
.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.cart-count {
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    padding: 0.15rem 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section - Slideshow */
.hero {
    background: linear-gradient(135deg, #01342c 0%, #3e8b7f 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-slideshow {
    position: relative;
    height: 600px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
/* Breadcrumb Section */
.breadcrumb-section {
    background-color: #f9f9f9;
    padding: 1rem 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.breadcrumb a {
    color: #7f8c8d;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #3e8b7f;
}

.breadcrumb .separator {
    color: #bdc3c7;
}

.breadcrumb .current {
    color: #2c3e50;
    font-weight: 500;
}

/* Product Details Section */
.product-details-section {
    padding: 4rem 0;
    background: white;
}

.product-details-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.product-image-gallery {
    position: relative;
}

.main-image-container {
    position: relative;
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.main-product-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.main-image-container:hover .main-product-image {
    transform: scale(1.05);
}

.promotion-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.discount-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.product-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f0f4f8;
    color: #3e8b7f;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    width: fit-content;
}

.product-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.product-rating-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.rating-stars .material-icons {
    color: #ddd;
    font-size: 1.5rem;
}

.rating-stars .material-icons.filled {
    color: #f39c12;
}

.rating-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
}

.review-count {
    color: #7f8c8d;
}

.product-price-section {
    padding: 1.5rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.old-price {
    font-size: 1.5rem;
    color: #95a5a6;
    text-decoration: line-through;
    margin-right: 1rem;
}

.discount-tag {
    background: #e74c3c;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 1rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
    line-height: 1;
}

.price-label {
    color: #3e8b7f;
    font-weight: 600;
    margin-top: 0.5rem;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
}

.availability-badge.in-stock {
    background: #d4edda;
    color: #155724;
}

.availability-badge.out-of-stock {
    background: #f8d7da;
    color: #721c24;
}

.product-description {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
}

.product-description h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.product-description p {
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.product-specifications {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
}

.product-specifications h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.specifications-content {
    line-height: 1.8;
    color: #555;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.product-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.buy-now-btn {
    background: #e74c3c;
    color: white;
}

.buy-now-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* Reviews Section */
.reviews-section {
    background-color: #f9f9f9;
    padding: 4rem 0;
}

.reviews-section .section-title {
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 2rem;
}

.rating-overview {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.rating-average {
    text-align: center;
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #e74c3c;
    line-height: 1;
}

.rating-stars-large {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    margin: 0.5rem 0;
}

.rating-stars-large .material-icons {
    font-size: 1.75rem;
    color: #ddd;
}

.rating-stars-large .material-icons.filled {
    color: #f39c12;
}

.total-reviews {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.star-label {
    width: 30px;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.rating-bar-track {
    flex: 1;
    height: 8px;
    background: #ecf0f1;
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: #f39c12;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.star-count {
    width: 40px;
    text-align: right;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.review-form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.review-form-container h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    cursor: pointer;
    font-size: 2rem;
    color: #ddd;
    transition: color 0.2s;
    margin: 0;
}

.star-rating-input input:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
    color: #f39c12;
}

.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group textarea:focus {
    outline: none;
    border-color: #3e8b7f;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.reviewer-info strong {
    color: #2c3e50;
    font-size: 1.1rem;
}

.review-rating-stars {
    display: flex;
    gap: 0.25rem;
}

.review-rating-stars .material-icons {
    font-size: 1.25rem;
    color: #ddd;
}

.review-rating-stars .material-icons.filled {
    color: #f39c12;
}

.review-date {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.review-text {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.no-reviews {
    text-align: center;
    padding: 2rem;
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* Related Products Section */
.related-products-section {
    background-color: #f9f9f9;
    padding: 4rem 0;
}

.related-products-section .section-title {
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 2rem;
}

/* Responsive Styles for Product Details */
@media (max-width: 992px) {
    .product-details-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rating-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rating-average {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .product-details-section {
        padding: 2rem 0;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .reviews-section,
    .related-products-section {
        padding: 2rem 0;
    }
    
    .reviews-section .section-title,
    .related-products-section .section-title {
        font-size: 1.75rem;
    }
    
    .rating-number {
        font-size: 2.5rem;
    }
    
    .review-header {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/*  */
/* .hero-slide:nth-child(1) { */
    /* background-image: linear-gradient(rgba(1, 52, 44, 0.85), rgba(62, 139, 127, 0.85)), url('https://images.unsplash.com/photo-1550009158-9ebf69173e03?w=1920&q=80'); */
/* } */
/*  */
/* .hero-slide:nth-child(2) { */
    /* background-image: linear-gradient(rgba(1, 52, 44, 0.85), rgba(62, 139, 127, 0.85)), url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?w=1920&q=80'); */
/* } */
/*  */
/* .hero-slide:nth-child(3) { */
    /* background-image: linear-gradient(rgba(1, 52, 44, 0.85), rgba(62, 139, 127, 0.85)), url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?w=1920&q=80'); */
/* } */
/*  */
/* .hero-slide:nth-child(4) { */
    /* background-image: linear-gradient(rgba(1, 52, 44, 0.85), rgba(62, 139, 127, 0.85)), url('https://images.unsplash.com/photo-1556911220-e15b29be8c8f?w=1920&q=80'); */
/* } */

.hero-slide.active {
    opacity: 1;
}

.hero-slide .container {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-slide h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: slideUp 0.6s ease-out;
}

.hero-slide p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: slideUp 0.6s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 0.6s ease-out 0.4s backwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slideshow Navigation */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slide-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev-slide {
    left: 20px;
}

.next-slide {
    right: 20px;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: #3e8b7f;
    color: white;
}

.btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
    background-color: #34495e;
    color: white;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: white;
    color: #667eea;
}

/* Section Spacing */
section {
    padding: 4rem 0;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
    padding-bottom: 1rem;
}

section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #3e8b7f;
    margin: 1rem auto 0;
}

/* Grid */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Featured Products */
.featured-section {
    background-color: #fff;
}

.product-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: #e0e0e0;
}

.product-card:hover .product-image {
    transform: scale(1.02);
}

.product-image-container {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    background-color: #f8f9fa;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    padding: 1rem;
}

.product-content {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.6em;
}

.product-description {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f68b1e;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-old-price {
    font-size: 0.9rem;
    font-weight: 400;
    color: #999;
    text-decoration: line-through;
}

.product-current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f68b1e;
}

.product-discount-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    background-color: #f68b1e;
    padding: 0.25rem 0.5rem;
    border-radius: 2px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.product-rating-stars {
    color: #f68b1e;
}

.product-rating-count {
    color: #999;
    font-size: 0.75rem;
}

.availability {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 2px;
    display: inline-block;
    margin-top: auto;
}

.availability.in-stock {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.availability.out-of-stock {
    background-color: #ffebee;
    color: #c62828;
}

.availability.coming-soon {
    background-color: #e3f2fd;
    color: #1565c0;
}

.product-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
}

.product-card-action {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #027c49;
    background: white;
    color: #027c49;
    border-radius: 2px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.product-card-action:hover {
    background: #027c49;
    color: white;
}

.product-card-action.primary {
    background: #027c49;
    color: white;
}

.product-card-action.primary:hover {
    background: #1aaf71;
}

.product-card-action.whatsapp-btn {
    border-color: #25D366;
    color: #25D366;
}

.product-card-action.whatsapp-btn:hover {
    background: #25D366;
    color: white;
}

.product-discount-overlay {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #027c49;
    color: white;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 2px;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-card:hover .product-discount-overlay {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

.availability.out-of-stock {
    background-color: #fadbd8;
    color: #c0392b;
}

/* Services Section */
.services-section {
    background-color: #fff;
}

.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.service-card:hover {
    background-color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Forms */
form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

input[type="text"],
input[type="email"],
input[type="phone"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="phone"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #3e8b7f;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

/* Feedback/Testimonials */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.stars {
    color: #f39c12;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
    margin-top: 1rem;
}

.testimonial-date {
    font-size: 0.85rem;
    color: #95a5a6;
    margin-top: 0.5rem;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3e8b7f;
}

.contact-info {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
    color: #95a5a6;
}

/* About Section */
.about-intro {
    background-color: #fff;
    text-align: center;
    padding: 3rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.about-grid h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-list {
    list-style: none;
}

.value-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.value-list li::before {
    content: '✓ ';
    color: #3e8b7f;
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Search and Filter */
.filter-section {
    background-color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.filter-group {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
    align-items: end;
}

.filter-group input,
.filter-group select {
    width: 100%;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #d5f4e6;
    color: #27ae60;
    border-left: 4px solid #27ae60;
}

.alert-error {
    background-color: #fadbd8;
    color: #c0392b;
    border-left: 4px solid #c0392b;
}

.alert-info {
    background-color: #d6eaf8;
    color: #2980b9;
    border-left: 4px solid #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: white;
        gap: 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
    }

    .hamburger {
        display: flex;
    }

    /* Separate cart icon from mobile menu */
    nav {
        justify-content: space-between;
        position: relative;
        align-items: center;
    }

    .logo {
        flex: 0 0 auto;
    }

    .hamburger {
        flex: 0 0 auto;
        margin-right: 4rem;
    }

    /* Position cart icon in header outside the menu */
    .cart-icon {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 101;
        padding-right: 1rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .hero-slideshow {
        height: 500px;
    }

    .hero-slide h1 {
        font-size: 2rem;
    }

    .hero-slide p {
        font-size: 1rem;
    }

    .slide-nav {
        width: 40px;
        height: 40px;
    }

    .prev-slide {
        left: 10px;
    }

    .next-slide {
        right: 10px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    section {
        padding: 2rem 0;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .filter-group {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1rem; }

    .hero h1 {
        font-size: 1.5rem;
    }

    .product-card {
        margin-bottom: 1rem;
    }

    .btn {
        width: 100%;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    header, footer, .btn {
        display: none;
    }
}

/* Admin Panel Styles */
.admin-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background-color: #00838f;
    color: white;
    padding: 2rem 0;
}

.admin-sidebar ul {
    list-style: none;
}

.admin-sidebar a {
    display: block;
    padding: 1rem 1.5rem;
    color: #bdc3c7;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background-color: #007a86;
    color: white;
    border-left-color: #5DAF9A;
}

.admin-content {
    padding: 2rem;
    background-color: #ecf0f1;
}

/* Admin-specific button overrides */
.admin-content .btn-primary {
    background-color: #5DAF9A;
    color: #ffffff;
}
.admin-content .btn-primary:hover {
    background-color: #4ca485;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(93,175,154,0.25);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.table-responsive {
    overflow-x: auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
}

td {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
}

tbody tr:hover {
    background-color: #f9f9f9;
}

.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-edit {
    background-color: #3498db;
    color: white;
}

.btn-edit:hover {
    background-color: #2980b9;
}

.btn-delete {
    background-color: #3e8b7f;
    color: white;
}

.btn-delete:hover {
    background-color: #c0392b;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-close {
    cursor: pointer;
    font-size: 1.5rem;
    color: #95a5a6;
}

.modal-close:hover {
    color: #2c3e50;
}
