/* ===================================
   Additional Styles for Pages
   =================================== */

/* ===== Products Page ===== */
.products-section {
    padding: 4rem 0;
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

/* Sidebar Filters */
.products-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-section {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.filter-title {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--border-color);
}

.filter-list li {
    margin-bottom: 0.8rem;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition);
}

.filter-checkbox:hover {
    color: var(--primary-color);
}

.filter-checkbox input[type="checkbox"] {
    margin-right: 0.8rem;
    cursor: pointer;
}

.filter-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Price Range Filter */
.price-range {
    padding-top: 0.5rem;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-input-group {
    flex: 1;
}

.price-input-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.price-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 0.9rem;
}

.price-separator {
    color: var(--text-light);
    margin-top: 1.5rem;
}

.btn-filter {
    width: 100%;
    padding: 0.7rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-filter:hover {
    background-color: var(--secondary-color);
}

/* Color Filters */
.color-filters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    padding-top: 0.5rem;
}

.color-option {
    cursor: pointer;
    position: relative;
}

.color-option input[type="checkbox"] {
    display: none;
}

.color-box {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.color-option input[type="checkbox"]:checked + .color-box {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.2);
}

.btn-clear-filters {
    width: 100%;
    padding: 0.8rem;
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-clear-filters:hover {
    background-color: var(--bg-light);
}

/* Products Main */
.products-main {
    min-height: 600px;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.products-count {
    color: var(--text-light);
    font-weight: 500;
}

.products-sort {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.products-sort label {
    font-weight: 500;
    color: var(--text-color);
}

.sort-select {
    padding: 0.6rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--white);
    cursor: pointer;
    font-size: 0.95rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    list-style: none;
    padding: 0;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background-color: var(--white);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.pagination-btn:hover:not(:disabled) {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Bootstrap Pagination Styling */
.pagination .page-item {
    margin: 0 2px;
}

.pagination .page-link {
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
}

.pagination .page-link:hover {
    background-color: #8B4513;
    color: #fff;
    border-color: #8B4513;
}

.pagination .page-item.active .page-link {
    background-color: #8B4513;
    color: #fff;
    border-color: #8B4513;
    z-index: 3;
}

.pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background-color: #f8f9fa;
    color: #6c757d;
}

/* Fix for arrow size */
.pagination .page-link svg {
    width: 16px;
    height: 16px;
    max-width: 16px;
    max-height: 16px;
}

.pagination .page-link i {
    font-size: 14px;
    max-width: 16px;
    max-height: 16px;
}

/* Span elements in pagination */
.pagination .page-link span {
    font-size: 14px;
}

/* ===== About Page ===== */
.about-story {
    padding: 5rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    height: 500px;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.stat-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Mission Vision */
.mission-vision {
    padding: 5rem 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.mv-card {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.mv-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mv-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.mv-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.value-text {
    color: var(--text-light);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.team-member {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.member-image {
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-name {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin: 1.5rem 0 0.3rem;
    padding: 0 1.5rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.6;
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0 1.5rem 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ===== Contact Page ===== */
.contact-section {
    padding: 5rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.form-desc {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.form-textarea {
    resize: vertical;
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.info-desc {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-info-item:hover {
    background-color: var(--white);
    box-shadow: var(--shadow);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-label {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.info-text {
    color: var(--text-light);
    line-height: 1.8;
}

.info-text a {
    color: var(--primary-color);
    transition: var(--transition);
}

.info-text a:hover {
    color: var(--secondary-color);
}

/* Social Section */
.social-section {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 10px;
    text-align: center;
}

.social-title {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.social-links.large {
    justify-content: center;
}

.social-links.large .social-link {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

/* Map Section */
.map-section {
    margin: 4rem 0;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 10px;
    overflow: hidden;
}

.map-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
}

.map-content i {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.map-content p {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.map-content small {
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: var(--transition);
    text-align: left;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   Responsive Media Queries
   =================================== */

/* Tablets and Small Laptops */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content,
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-form {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-layout {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .header-topbar {
        display: none;
    }

    .header-search {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 78px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 78px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        gap: 2rem;
        border-top: none;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
        overflow: visible;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link {
        display: block;
        padding: 1rem 0;
        width: 100%;
        justify-content: space-between;
    }
    
    /* Mobile Dropdown Styles */
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin-top: 0;
        background: #f8f9fa;
        transition: all 0.3s ease;
    }
    
    .nav-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
    }
    
    .nav-dropdown .dropdown-menu a {
        padding: 0.8rem 1.5rem 0.8rem 2rem;
        font-size: 0.95rem;
    }
    
    .nav-dropdown .dropdown-menu a:hover {
        padding-left: 2.5rem;
    }
    
    .nav-dropdown .nav-link i.fa-chevron-down {
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.active .nav-link i.fa-chevron-down {
        transform: rotate(180deg);
    }
    
    .nav-actions {
        width: 100%;
        justify-content: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero {
        height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .products-sidebar {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Pagination responsive for tablets */
    .pagination {
        gap: 0.4rem;
        margin-top: 2.5rem;
    }

    .pagination .page-link {
        min-width: 38px;
        height: 38px;
        padding: 7px 11px;
        font-size: 13px;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input,
    .newsletter-form .btn {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Pagination responsive */
    .pagination {
        gap: 0.3rem;
        margin-top: 2rem;
        flex-wrap: wrap;
    }

    .pagination .page-link {
        min-width: 35px;
        height: 35px;
        padding: 6px 10px;
        font-size: 12px;
    }

    .pagination .page-link svg {
        width: 14px;
        height: 14px;
    }
    
    .products-toolbar {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .products-sort {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .sort-select {
        width: 100%;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .logo a {
        font-size: 1.3rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo i {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}
/* ===================================
   Modern Hero Section Responsive Styles
   =================================== */

/* Tablet Devices */
@media (max-width: 992px) {
    .hero-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: -60px;
    }
    
    .hero-cat-card {
        padding: 25px 15px;
    }
    
    .hero-cat-icon {
        font-size: 35px;
    }
    
    .category-banner-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .deals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .main-hero-slider {
        height: 350px;
    }
    
    .hero-slide-content {
        left: 5%;
        right: 5%;
        max-width: 90%;
    }
    
    .hero-slide-content h1 {
        font-size: 28px;
    }
    
    .hero-slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .hero-slide-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .hero-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: -40px;
        padding: 0 15px;
    }
    
    .hero-cat-card {
        padding: 20px 10px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .hero-cat-card:nth-child(2n) {
        border-right: 1px solid rgba(255,255,255,0.1);
    }
    
    .hero-cat-icon {
        font-size: 30px;
        margin-bottom: 10px;
    }
    
    .hero-cat-card h3 {
        font-size: 16px;
    }
    
    .hero-cat-card p {
        font-size: 12px;
    }
    
    .hero-cat-btn {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .section-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .category-banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-banner-item {
        height: 250px;
    }
    
    .category-banner-overlay h3 {
        font-size: 20px;
    }
    
    .deals-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .deals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .deal-card img {
        height: 250px;
    }
    
    .shop-by-category-banner {
        padding: 40px 0 30px;
    }
    
    .deals-section {
        padding: 40px 0;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .main-hero-slider {
        height: 280px;
    }
    
    .hero-slide-content h1 {
        font-size: 22px;
    }
    
    .hero-slide-content p {
        font-size: 14px;
    }
    
    .hero-slide-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .hero-category-grid {
        grid-template-columns: 1fr;
        margin-top: -30px;
    }
    
    .hero-cat-card {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .hero-cat-card:last-child {
        border-bottom: none;
    }
    
    .section-heading {
        font-size: 20px;
    }
    
    .category-banner-grid {
        grid-template-columns: 1fr;
    }
    
    .category-banner-item {
        height: 220px;
    }
    
    .deal-card img {
        height: 220px;
    }
    
    .slider-indicators {
        bottom: 10px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .slider-dot.active {
        width: 24px;
    }
}

/* ===================================
   Mobile Footer Responsive Styles
   =================================== */

/* Tablets and Medium Devices */
@media (max-width: 992px) {
    .newsletter-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .newsletter-form-wrapper {
        max-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .newsletter-text h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-text p {
        font-size: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        border-radius: 25px;
    }
    
    .newsletter-form input {
        border-radius: 25px 25px 0 0;
        padding: 15px 20px;
    }
    
    .btn-newsletter {
        border-radius: 0 0 25px 25px;
        width: 100%;
        padding: 15px 20px;
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .footer-desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-contact li {
        margin-bottom: 1.2rem;
        font-size: 0.9rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
    .footer-newsletter {
        padding: 2rem 0;
    }
    
    .newsletter-wrapper {
        gap: 1.5rem;
    }
    
    .newsletter-text h3 {
        font-size: 1.3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .newsletter-text h3 i {
        font-size: 2rem;
    }
    
    .newsletter-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .btn-newsletter {
        justify-content: center;
    }
    
    .footer-main {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-col {
        border-bottom: 1px solid #eee;
        padding-bottom: 1.5rem;
    }
    
    .footer-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .footer-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-desc {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .footer-links li {
        margin-bottom: 0.6rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding-left: 0;
    }
    
    .footer-links a:hover {
        padding-left: 3px;
    }
    
    .footer-contact li {
        margin-bottom: 1rem;
        font-size: 0.85rem;
        gap: 0.8rem;
    }
    
    .footer-contact i {
        font-size: 1.1rem;
        min-width: 25px;
    }
    
    .footer-social {
        margin-top: 1rem;
    }
    
    .footer-social p {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .social-links {
        display: flex;
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .newsletter-form {
        border-radius: 20px;
        flex-direction: column;
    }
    
    .newsletter-form input {
        padding: 12px 15px;
        font-size: 0.9rem;
        border-radius: 20px 20px 0 0;
    }
    
    .btn-newsletter {
        padding: 12px 15px;
        font-size: 0.85rem;
        border-radius: 0 0 20px 20px;
        justify-content: center;
    }
    
    .footer-newsletter {
        padding: 1.5rem 0;
    }
    
    .newsletter-text h3 {
        font-size: 1.2rem;
    }
    
    .footer-logo-section img {
        max-width: 150px !important;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
}