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

:root {
    --primary-color: #2D5016;
    --secondary-color: #4A7C59;
    --accent-color: #D4AF37;
    --text-primary: #333333;
    --text-secondary: #666666;
    --background-light: #F8F9FA;
    --white: #FFFFFF;
    --error-color: #E74C3C;
    --success-color: #27AE60;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.nav-logo-img{
    width: 80px;
    height: 80px;
    margin-right: 10px;
}
.nav-logo h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-logo span {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    outline: none;
    transition: var(--transition);
    width: 250px;
}

.search-box input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.search-box i {
    position: absolute;
    right: 1rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.cart-icon:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--error-color);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */

    .productslide{
      background-image: url(/src/productslide.png);
      height: 300px;
        background-repeat: no-repeat;
        background-size: 100%;
    }
    
    .aboutslide{
      background-image: url(/src/about\ slide.png);
      height: 280px;
      background-size: 100%;
      margin-top: 80px;
      background-repeat: no-repeat;
 
    }
     .Contactslide{
      background-image: url(/src/contactslide.png);
      height: 280px;
      background-size: 100%;
      margin-top: 120px;
      background-repeat: no-repeat;
 
    }
    .shoppingslide{
      background-image: url(/src/shoppingslide.png);
      height: 280px;
      background-size: 100%;
      margin-top: 80px;
      background-repeat: no-repeat;
 
    }
    .checkoutslide{
      background-image: url(/src/checkoutslide.png);
      height: 370px;
      background-size: 100%;
      margin-top: 80px;
      background-repeat: no-repeat;
 
    }

.qr-code{
    width: 350px;
    height: 450px;
    margin-top: 10px;
    border-radius: 10px;
    border: 2px solid #eee;
    justify-content: center;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
 background-image: url(/src/slider1.png);
 background-repeat: no-repeat;
 background-size: 100%;
 height: 750px;
}
.btn-primary1{
    margin-top: 23%;
    background-color: var(--primary-color);
    color: white;
    width: 300px;
    height: 60px;
    padding-top: 15px;
    text-decoration: none;
    font-size: larger;
    border-radius: 20px;
    margin-left: 30px;
}
.btn-primary:hover{
    background-color: var(--secondary-color);
    color: white;
    box-shadow: var(--shadow-hover);
    transform: scale(1.05);

}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

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

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

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

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

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

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

/* Categories Section */
.categories {
    padding: 4rem 0;
    background: var(--white);
}

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

.category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.category-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.product-count {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Featured Products */
.featured-products {
    padding: 4rem 0;
    background: var(--background-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.volume-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(45, 80, 22, 0.9);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

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

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

.product-info {
    padding: 1.5rem;
}

.product-category {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0.5rem 0;
    color: var(--primary-color);
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.volume-selector {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.volume-selector label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.volume-select {
    padding: 0.5rem;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    background: var(--white);
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    outline: none;
    transition: var(--transition);
    cursor: pointer;
}

.volume-select:hover,
.volume-select:focus {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.volume-select option {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.quantity-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 1.1rem;
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.quantity-display {
    min-width: 50px;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-color);
    background: var(--background-light);
    padding: 0.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
}

.add-to-cart {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    font-size: 1rem;
}

.add-to-cart:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.add-to-cart:active {
    transform: translateY(0);
}

.view-details-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.view-details-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}


/* Product Details Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-modal.active {
    opacity: 1;
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.product-modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    position: sticky;
    top: 0;
    background: var(--white);
    padding: 1rem 2rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    z-index: 10;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-body {
    padding: 2rem;
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.product-image-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.image-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.product-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-category-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.product-title {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 0;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: var(--accent-color);
}

.rating-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.product-price-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.discount {
    background: var(--success-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.volume-selection-modal {
    margin: 2rem 0;
}

.volume-selection-modal h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.volume-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.volume-option {
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
}

.volume-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.volume-option.selected {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.volume-size {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.volume-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.volume-option.selected .volume-price {
    color: var(--accent-color);
}

.volume-discount {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--success-color);
    background: rgba(39, 174, 96, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    display: inline-block;
}

.volume-option.selected .volume-discount {
    color: var(--accent-color);
    background: rgba(212, 175, 55, 0.2);
}

.product-description-full h4,
.product-benefits-section h4,
.product-specifications h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.product-description-full p,
.product-benefits-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.benefits-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.benefits-list i {
    color: var(--success-color);
    font-size: 0.9rem;
}

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
}

.spec-label {
    font-weight: 600;
    color: var(--text-primary);
}

.spec-value {
    color: var(--primary-color);
    font-weight: 500;
}

.modal-actions {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.quantity-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-section label {
    font-weight: 600;
    color: var(--text-primary);
}

.quantity-controls-modal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-btn-modal {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 1.2rem;
}

.quantity-btn-modal:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.quantity-display-modal {
    min-width: 60px;
    text-align: center;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--primary-color);
    background: var(--white);
    padding: 0.75rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

.add-to-cart-modal,
.buy-now-btn {
    flex: 1;
    padding: 1rem 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-to-cart-modal {
    background: var(--primary-color);
    color: var(--white);
}

.add-to-cart-modal:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.buy-now-btn {
    background: var(--accent-color);
    color: var(--white);
}

.buy-now-btn:hover {
    background: #B8941F;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.delivery-info {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); */
    gap: 1rem;
    margin-top: 2rem;
}

.delivery-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.delivery-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.delivery-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.delivery-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}
  .form-card {
        background: var(--white);
        padding: 2rem;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
    }
    
    .form-card h2 {
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        font-size: 2rem;
    }
    
    .contact-form {
        display: grid;
        gap: 1.5rem;
    }
    
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .form-group {
        display: flex;
        flex-direction: column;
    }
    
    .form-group label {
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--text-primary);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        border: 2px solid #eee;
        border-radius: var(--border-radius);
        outline: none;
        transition: var(--transition);
        font-size: 1rem;
        font-family: inherit;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
    }
    
    .form-group.has-error input,
    .form-group.has-error select,
    .form-group.has-error textarea {
        border-color: var(--error-color);
    }
    
    .error-message {
        color: var(--error-color);
        font-size: 0.9rem;
        margin-top: 0.5rem;
        min-height: 1.2rem;
    }
    
    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }
    .pagination {
 
  text-align: center;
  padding: 50px;
}

.page-btn {
  margin: 0 5px;
  padding: 8px 12px;
  border: none;
  background: #eee;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}

.page-btn.active {
  background: #d4af37; /* gold */
  color: white;
  font-weight: bold;
}

.page-btn:hover {
  background: #ccc;
}
.products-hero {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: var(--white);
        padding: 4rem 0;
        text-align: center;
    }
    
    .products-hero h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .products-hero p {
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .products-section {
        padding: 4rem 0;
    }
    
    .products-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 3rem;
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .filters {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .filter-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .filter-group label {
        font-weight: 600;
        color: var(--primary-color);
    }
    
    .filter-group select {
        padding: 0.5rem 1rem;
        border: 2px solid #eee;
        border-radius: var(--border-radius);
        outline: none;
        transition: var(--transition);
        min-width: 150px;
         font-size: 18px;
    }
    
    .filter-group select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
        font-size: 18px;
    }
    
    .view-toggle {
        display: flex;
        gap: 0.5rem;
    }
    
    .view-btn {
        padding: 0.75rem;
        background: var(--white);
        border: 2px solid #eee;
        border-radius: var(--border-radius);
        cursor: pointer;
        transition: var(--transition);
        color: var(--text-secondary);
    }
    
    .view-btn:hover,
    .view-btn.active {
        background: var(--primary-color);
        color: var(--white);
        border-color: var(--primary-color);
    }
    
    .products-list {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .product-list-item {
        display: flex;
        background: var(--white);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
        overflow: hidden;
        transition: var(--transition);
        padding: 1.5rem;
        gap: 2rem;
        align-items: center;
    }
    
    .product-list-item:hover {
        box-shadow: var(--shadow-hover);
        transform: translateY(-2px);
    }
    
    .product-list-item .product-image {
        width: 150px;
        height: 150px;
        object-fit: cover;
        border-radius: var(--border-radius);
        flex-shrink: 0;
    }
    
    .product-list-item .product-info {
        flex: 1;
    }
    
    .product-list-item .product-actions-column {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        min-width: 200px;
    }
    
    .product-list-item .quantity-label {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
    }
    
    .product-benefits {
        color: var(--text-secondary);
        font-size: 0.9rem;
        margin-top: 1rem;
        line-height: 1.5;
    }
    
    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-top: 3rem;
    }
    
    .page-btn {
        padding: 0.75rem 1rem;
        background: var(--white);
        border: 2px solid #eee;
        border-radius: var(--border-radius);
        cursor: pointer;
        transition: var(--transition);
        color: var(--text-primary);
        min-width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .page-btn:hover,
    .page-btn.active {
        background: var(--primary-color);
        color: var(--white);
        border-color: var(--primary-color);
    }
    
    .page-dots {
        padding: 0.75rem 0.5rem;
        color: var(--text-secondary);
    }
    
    .no-products {
        grid-column: 1 / -1;
        text-align: center;
        padding: 4rem 2rem;
        color: var(--text-secondary);
    }
    
    .no-products h3 {
        margin-bottom: 1rem;
        color: var(--text-primary);
    }
    
  
    


/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--white);
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-logo{
  width: 200px;
}
.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 340px;
    margin-bottom: 0.5rem;
}
.contact-info h2{
    font-size: 28px;
    
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

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

.cart-header h3 {
    color: var(--primary-color);
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

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

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

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

.cart-item-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cart-item-volume {
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    font-weight: 600;
    color: var(--accent-color);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
}

.cart-total {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.cart-actions {
    display: flex;
    gap: 0.5rem;
}

.cart-actions .btn {
    flex: 1;
    padding: 0.75rem;
    text-align: center;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;

}


/* ytvdo */



.video-section{
    margin-top: 20px;
    text-align: center;
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
    margin-bottom: 30px;
    
    
}


/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.d-none {
    display: none;
}

.d-block {
    display: block;
}

/* Loading States */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
 .footer-float-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  bottom: 2%;
  right: 1%;
  row-gap: 0px;
}

 .wp{
  height: 70px;
  z-index: 5 !important;
  transition: 0.5s;
 }

 .wp:hover{
  transform: scale(1.2);
 }

 .uparrow{
  height: 60px;
  z-index: 5 !important;
  right: 5.4%;
 }

   


/* Large screens optimization */
@media (max-width: 1400px) {
    .hero-content {
 
margin-top: 70px; 
 background-image: url(/src/slider1.png);
 background-repeat: no-repeat;
 background-size: 100%;
 height: 530px;
}
    .container {
        max-width: 1400px;
    }
    
    .hero-content {
        gap: 5rem;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .hero-text p {
        font-size: 1.2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
    }
    
    .product-card {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
}
/* Modal Responsive Design */
@media (max-width: 768px) {
  .form-group input,
    .form-group select,
    .form-group textarea {
        padding:10px;
        border: 2px solid #eee;
        border-radius: var(--border-radius);
        outline: none;
        transition: var(--transition);
        font-size: 1rem;
        font-family: inherit;
        width: 280px;
    }
    
    .product-modal {
        padding: 1rem;
    }
    
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .current-price {
        font-size: 1.5rem;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .delivery-info {
        grid-template-columns: 1fr;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-header {
        padding: 1rem;
    }

}


/* Responsive Design */
@media (max-width: 768px) {

    /* ytvdo */
.video-section{
    margin-top: 20px;
    text-align: center;
    display: flex;
    gap: 20px;
    width: 100%;
  flex-direction: column;
    margin-bottom: 30px;
    width: 200px;
    margin-left: 30px;
    
    
}
    .contacts-infos{
        display: none;
    }
.hero-content {
 
margin-top: 100px; 
 background-image: url(/src/slider1.png);
 background-repeat: no-repeat;
 background-size: 100%;
 height: 130px;
}
.btn-primary1{
display: none;
}
    .productslide{
      background-image: url(/src/productslide.png);
      margin-top: 120px; 
      height: 80px;
        background-repeat: no-repeat;
        background-size: 100%;
    }
    
    .aboutslide{
      background-image: url(/src/about\ slide.png);
      height: 280px;
      background-size: 100%;
      margin-top: 80px;
      background-repeat: no-repeat;
 
    }
     .Contactslide{
      background-image: url(/src/contactslide.png);
      height: 80px;
      background-size: 100%;
      margin-top: 120px;
      background-repeat: no-repeat;
 
    }
    .shoppingslide{
      background-image: url(/src/shoppingslide.png);
      height: 280px;
      background-size: 100%;
      margin-top: 80px;
      background-repeat: no-repeat;
 
    }
    .checkoutslide{
      background-image: url(/src/checkoutslide.png);
      height: 370px;
      background-size: 100%;
      margin-top: 80px;
      background-repeat: no-repeat;
 
    }

    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(70vh - 80px);
        background: rgb(31, 58, 31);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding-top: 30%;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-icons {
        gap: 0.5rem;
    }
    .nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
 
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

    .search-box{
      display: none;
    }
    
   .cart-icon {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
    margin-left: 8rem;
}
    
    .categories-grid,
    .products-grid,
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
    
    .product-actions {
        padding: 0 0.5rem;
    }
    
    .volume-selector {
        margin-bottom: 0.75rem;
    }
    
    .volume-select {
        font-size: 0.85rem;
        padding: 0.4rem;
    }
    
    .volume-options {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.75rem;
    }
    
    .volume-option {
        padding: 0.75rem;
    }
    
    .volume-size {
        font-size: 1rem;
    }
    
    .volume-price {
        font-size: 1.1rem;
    }
    
    .quantity-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .quantity-display {
        min-width: 45px;
        font-size: 1.1rem;
        padding: 0.4rem;
    }
    
    .add-to-cart {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    margin-left: 60px;
}
.contactfoot{
    display: none;
}
.contacts-info p {
    display: none;
    
}
iframe{
    width: 300px;
    height: 200px;
}
.contact-form {
        display: grid;
        gap: 1.5rem;
        padding: 10px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr ;
        gap: 1rem;
    }
    
    .form-card {
        background: var(--white);
        padding: 1rem;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
        width: 330px;
        padding-top: 30px;
    }
    
    .form-card h2 {
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        font-size: 20px;
       justify-content: center;
    }
        .products-hero h1 {
            font-size: 2rem;
        }
        
        .products-header {
            flex-direction: column;
            align-items: stretch;
        }
        
        .filters {
            flex-direction: column;
            gap: 1rem;
        }
        
        .filter-group {
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
        }
        
        .filter-group select {
            min-width: 200px;
        }
        
        .product-list-item {
            flex-direction: column;
            text-align: center;
        }
        
        .product-list-item .product-image {
            width: 200px;
            height: 200px;
        }
        
        .product-list-item .product-actions-column {
            width: 100%;
            min-width: unset;
            gap: 0.75rem;
        }
        
        .product-list-item .quantity-controls {
            justify-content: center;
        }
        
        .product-list-item .quantity-btn {
            width: 35px;
            height: 35px;
        }
        
        .product-list-item .quantity-display {
            min-width: 45px;
            font-size: 1.1rem;
        }
 
    
}
@media (max-width: 750px) {
  .footer-float-items {
    bottom: 1%;
    right: 2%;
      row-gap: 0px;
  }
    .wp{
  height: 60px;
  z-index: 5 !important;
  transition: 0.5s;
  
 }

 .wp:hover{
  transform: scale(1.2);
 }

 .uparrow{
  height: 50px;
  z-index: 5 !important;
  right: 5%;
 }
 }

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .search-box input {
        width: 100px;
        padding: 0.4rem 2rem 0.4rem 0.8rem;
    }
    
    .search-box {
        position: relative;
    }
    
    .search-box i {
        right: 0.8rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
    }
    
    .btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .categories-grid,
    .products-grid,
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1rem;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .product-info {
        padding: 1.25rem;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    .product-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .product-price {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .volume-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .volume-selector label {
        font-size: 0.85rem;
    }
    
    .volume-select {
        font-size: 0.8rem;
        padding: 0.35rem;
    }
    
    .volume-options {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 0.5rem;
    }
    
    .volume-option {
        padding: 0.6rem;
    }
    
    .volume-size {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .volume-price {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .volume-discount {
        font-size: 0.7rem;
        padding: 0.15rem 0.4rem;
    }
    
    .quantity-controls {
        gap: 0.5rem;
    }
    
    .quantity-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .quantity-display {
        min-width: 40px;
        font-size: 1rem;
        padding: 0.35rem;
    }
    
    .add-to-cart {
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }
    
    .category-card {
        padding: 1.25rem;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    .info-cards{
        width: 350px;
    }
           /* contact section */
.info-card{
    width: 385px;
    
}
.info-details p{
    width: 300px;
}

.contact-info h2{
    font-size: 20px;
    
}
.form-card{
    width: 385px;
}
.contact-form input{
width: 330px;
}
.contact-form textarea{
    width: 330px;
}

}

/* Extra small devices */
@media (max-width: 378px) {
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .categories-grid,
    .products-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .quantity-controls {
        gap: 0.4rem;
    }
    
    .quantity-btn {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
    
    .quantity-display {
        min-width: 35px;
        font-size: 0.95rem;
        padding: 0.3rem;
    }
    
    .add-to-cart {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

.info-card{
    width: 340px;
    
}
.info-details p{
    width: 240px;
    font-size: 15px;
}
  .Contactslide{
      background-image: url(/src/contactslide.png);
      height: 70px;
      background-size: 100%;
      margin-top: 120px;
      background-repeat: no-repeat;
 
    }
.contact-info h2{
    font-size: 20px;
    
}
.form-card{
    width: 340px;
}
.contact-form input{
width: 300px;
}
.contact-form textarea{
    width: 300px;
}




}
