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

body {
    font-family: 'Poppins', serif;
    line-height: 1.6;
    color: #2e2e2e;
    background-color: #faf6f0;
}

h1, h2, h3, h4, h5, h6 {
   font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* Container System */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

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

.container-page {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}




/* Hero Section */
.hero {
    background: linear-gradient(rgba(139, 94, 60, 0.7), rgba(139, 94, 60, 0.7)), 
                url('../images/hero-bg.jpg') center/cover;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}



.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

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

/* Categories */
.category-card-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card-wrapper a {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* .product-info {
    padding: 2.9rem;
} */








.category-card-wrapper:hover .category-text h3,
.category-card-wrapper:hover .category-text p {
    color: #8B5E3C;
}

/* Enhanced Category Banner */
.category-banner {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    margin-bottom: 4rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.category-banner-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.category-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.category-banner:hover .category-banner-image img {
    transform: scale(1.03);
}

.category-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(139, 94, 60, 0.8) 0%, 
        rgba(139, 94, 60, 0.6) 50%, 
        rgba(0, 0, 0, 0.4) 100%
    );
}

.category-banner-default {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B5E3C, #A0522D, #CD853F);
    display: flex;
    align-items: center;
    justify-content: center;
}

.default-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 2px, transparent 2px),
        linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.05) 50%, transparent 55%);
    background-size: 50px 50px, 50px 50px, 30px 30px;
}

.category-letter {
    position: relative;
    z-index: 2;
    font-size: 10rem;
    font-weight: bold;
    color: rgba(255,255,255,0.8);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.category-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    z-index: 3;
    padding: 3rem;
}

.category-title-section h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.1;
}

.category-meta {
    margin-bottom: 2rem;
}

.category-meta .products-count {
    font-size: 1.3rem;
    background: rgba(255,255,255,0.2);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.3);
    font-weight: 600;
    display: inline-block;
}

.category-description {
    font-size: 1.4rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 300;
}

/* Enhanced Products Section */
.category-products {
    margin-top: 3rem;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid #8B5E3C;
}

.products-header h2 {
    color: #2c3e50;
    font-size: 2.8rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.products-count-header {
    font-size: 1.6rem;
    color: #8B5E3C;
    font-weight: normal;
}

.products-filter select {
    padding: 1rem 2rem;
    border-radius: 10px;
    border: 2px solid #8B5E3C;
    background: white;
    color: #8B5E3C;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    min-width: 200px;
}

.products-filter select:hover,
.products-filter select:focus {
    background: #8B5E3C;
    color: white;
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 94, 60, 0.3);
}





.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #f8f9fa;
}

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



.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #6c757d;
    text-align: center;
}

.product-image-placeholder span {
    font-size: 4rem;
    margin-bottom: 1rem;
}












/* Page Header */
.page-header {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin: 49px 0 2rem 0;
    padding: 0 20px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}


.main-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}









.enquiry-section {
    margin: 3rem 0;
    display: flex;
    gap: 2rem;
}

.social-share {
    margin-top: 3rem;
}

.share-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.share-btn {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.share-btn.facebook { background-color: #3b5998; }
.share-btn.twitter { background-color: #1da1f2; }
.share-btn.pinterest { background-color: #bd081c; }

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.close {
    position: absolute;
    right: 2rem;
    top: 2rem;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close:hover {
    color: #8B5E3C;
}

/* Form Styles */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #8B5E3C;
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 94, 60, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}


/* Product Slider Sections */
.product-slider-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.product-slider-section.alt-bg {
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #8B5E3C, #A0522D);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}













/* Slider Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 3px solid #8B5E3C;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(139, 94, 60, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #8B5E3C;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    font-weight: bold;
}

.slider-nav:hover {
    background: #8B5E3C;
    color: white;
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 12px 40px rgba(139, 94, 60, 0.35);
}

.slider-nav:active {
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}



/* Slider Dots */
.product-slider-dots {
    text-align: center;
    margin-top: 4rem;
}

.product-dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 8px;
    border-radius: 50%;
    background-color: #dee2e6;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
}

.product-dot:hover {
    background-color: #adb5bd;
    transform: scale(1.3);
}

.product-dot.active {
    background-color: #8B5E3C;
    transform: scale(1.5);
    border-color: rgba(139, 94, 60, 0.3);
    box-shadow: 0 0 0 6px rgba(139, 94, 60, 0.1);
}



@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Accessibility */
.slider-nav:focus {
    outline: 3px solid rgba(139, 94, 60, 0.5);
    outline-offset: 3px;
}

.product-dot:focus {
    outline: 2px solid rgba(139, 94, 60, 0.7);
    outline-offset: 3px;
}




.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

/* Alerts */
.alert {
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    border: 2px solid transparent;
    font-weight: 500;
    font-size: 1rem;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeaa7;
}

.alert-floating {
    position: fixed;
    top: 120px;
    right: 30px;
    z-index: 3000;
    max-width: 450px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: slideInRight 0.4s ease;
}

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

.alert-close {
    float: right;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    margin-left: 1.5rem;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.alert-close:hover {
    opacity: 1;
}

/* Filter Section */
.filter-section {
    background-color: #f8f9fa;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 15px;
}

.filter-controls {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.search-box input {
    width: 350px;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.search-box input:focus {
    outline: none;
    border-color: #8B5E3C;
    box-shadow: 0 0 0 3px rgba(139, 94, 60, 0.1);
}

.category-filter select {
    padding: 15px 25px;
    border: 2px solid #ddd;
    border-radius: 50px;
    min-width: 250px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-filter select:focus {
    outline: none;
    border-color: #8B5E3C;
    box-shadow: 0 0 0 3px rgba(139, 94, 60, 0.1);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .container {
        max-width: 1000px;
    }
    
    .container-wide {
        max-width: 1200px;
    }
    
 
    

    
  
}

@media (max-width: 1200px) {
    .container {
        max-width: 900px;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
   

  
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .category-banner {
        height: 60vh;
        min-height: 400px;
    }
    
    .category-title-section h1 {
        font-size: 3.5rem;
    }
  
    
  
    

    
    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {

   
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .category-banner {
        height: 50vh;
        min-height: 350px;
    }
    
    .category-title-section h1 {
        font-size: 2.8rem;
    }
    
    .category-letter {
        font-size: 6rem;
    }
    
  
    
   
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    


    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .slider-nav.prev {
        left: 15px;
    }

    
    .enquiry-section {
        flex-direction: column;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
    
   
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box input {
        width: 100%;
    }
    
    .category-filter select {
        min-width: 100%;
    }
    
    .no-products-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .no-products-actions .btn {
        min-width: 250px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .category-banner {
        height: 40vh;
        min-height: 300px;
    }
    
    .category-title-section h1 {
        font-size: 2.2rem;
    }
    
 
   

    

    

    

    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    

    
    .modal-content {
        margin: 10% auto;
        padding: 2rem;
    }
    
    .main-image img {
        height: 400px;
    }
    
 
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .category-title-section h1 {
        font-size: 2rem;
    }
    
    
    

    

    
    .slider-nav.prev {
        left: 5px;
    }
    

    
    .no-products-actions .btn {
        min-width: 200px;
    }
}

/* Print Styles */
@media print {
    
    .btn,
    .modal,
    .slider-nav,
    .product-slider-dots {
        display: none !important;
    }
    
    body {
        color: black;
        background: white;
    }
    
   
}




/* Smooth scrolling for all elements */
html {
    scroll-behavior: smooth;
}







