/* 
 * Da Urban Furniture - Custom Styles
 * Clean, Modern CSS with Bootstrap 5.3 Integration
 */

:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --accent-color: #c9a227;
    --text-color: #1a1a1a;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-light: #f8f8f8;
    --bg-cream: #f5f5dc;
    --bg-dark: #1a1a1a;
    --border-color: #e5e5e5;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

.page-width {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* ========== TOP BAR (Red) ========== */
.top-bar {
    background-color: #e53935;
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    text-align: center;
    letter-spacing: 0.3px;
}

.top-bar strong {
    font-weight: 700;
}

/* ========== MAIN HEADER - ROW 2 ========== */
.main-header {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    font-size: 13px;
    color: var(--text-color);
}

.header-left i {
    font-size: 28px;
}

.header-left strong {
    font-size: 11px;
    text-transform: uppercase;
}

.header-left a {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
}

.header-logo {
    flex: 0 0 auto;
    text-align: center;
}

.header-logo img {
    height: 45px;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
    flex: 1;
}

.header-icons a,
.header-icons button {
    color: var(--text-color);
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.header-icons a:hover,
.header-icons button:hover {
    color: var(--accent-color);
}

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

/* ========== CATEGORY NAV - ROW 3 ========== */
.category-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.category-nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.category-nav-inner a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    padding: 4px 8px;
    white-space: nowrap;
}

.category-nav-inner a:hover {
    color: var(--accent-color);
}

.nav-separator {
    color: #ccc;
    font-size: 13px;
}

/* ========== HERO BANNER ========== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* ========== TRUST BADGES ========== */
.trust-badges {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-badges-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.trust-icon {
    font-size: 32px;
    color: var(--text-color);
}

.trust-text h6 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.trust-text p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

/* ========== BRAND REVIEWS ========== */
.brand-reviews {
    padding: 50px 0;
    background: var(--white);
}

.brand-reviews h2 {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 35px;
}

.reviews-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.review-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.review-item span {
    font-size: 20px;
    font-weight: 500;
}

/* ========== SECTION STYLES ========== */
.section-padding {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 35px;
}

.section-title-left {
    text-align: left;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
}

/* ========== COLLECTIONS SECTION ========== */
.collections-section {
    padding: 40px 0;
}

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

.collection-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.collection-card {
    text-align: left;
    transition: transform 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
}

.collection-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-light);
}

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

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

.collection-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.collection-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* ========== LATEST COLLECTION ========== */
.latest-collection {
    padding: 60px 0;
    background: var(--bg-light);
}

.latest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.latest-tabs {
    display: flex;
    gap: 25px;
}

.latest-tabs span {
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.latest-tabs span:hover,
.latest-tabs span.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* ========== BEST SELLERS ========== */
.bestsellers-section {
    padding: 60px 0;
    background: var(--white);
}

/* ========== PRODUCT GRID ========== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

/* ========== PRODUCT CARDS ========== */
.product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
    aspect-ratio: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: var(--transition);
}

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: var(--transition);
}

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

.product-actions button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.product-actions button:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.product-info {
    padding: 15px;
    text-align: left;
}

.product-rating {
    color: #ffc107;
    font-size: 12px;
    margin-bottom: 5px;
}

.product-brand {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-title a:hover {
    color: var(--accent-color);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

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

.original-price {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.discount {
    font-size: 11px;
    color: #28a745;
    font-weight: 600;
}

/* ========== CATEGORIES SECTION ========== */
.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

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

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

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

.category-overlay h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

/* ========== FEATURES SECTION ========== */
.feature-box {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary-color);
}

.feature-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-box p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* ========== BUTTONS ========== */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

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

.btn-outline-dark {
    border-width: 2px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

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

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card.odd {
    display: flex;
    flex-direction: column;
}

.feature-card.even {
    display: flex;
    flex-direction: column-reverse;
}

.feature-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    padding: 30px;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
}

.feature-content i {
    font-size: 28px;
    margin-bottom: 15px;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 60px 0;
    background: var(--white);
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    background: var(--bg-light);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #eeeeee;
}

.faq-question h5 {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.faq-toggle {
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
    background: #f9f9f9;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* ========== NEWSLETTER ========== */
.newsletter-section {
    padding: 50px 0;
    background: var(--bg-light);
    text-align: center;
}

.newsletter-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.newsletter-section p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
}

.newsletter-form {
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid var(--border-color);
    font-size: 14px;
}

.newsletter-form button {
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    cursor: pointer;
}

/* ========== FOOTER ========== */
.footer {
    background-color: #f5f5f5;
    color: var(--text-color);
    padding: 60px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    object-fit: contain;
}

.footer p {
    color: #444;
    font-size: 13px;
    line-height: 1.8;
}

.footer-social-heading {
    margin-bottom: 8px;
    margin-top: 15px;
}

.footer-social-heading strong {
    color: var(--text-color);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer h5 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #444;
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--text-color);
    text-decoration: underline;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #444;
    font-size: 13px;
}

.footer-contact i {
    flex-shrink: 0;
    margin-top: 3px;
    color: #444;
}

.footer-contact a {
    color: #444;
}

.footer-contact a:hover {
    color: var(--text-color);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 0;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
    border: none;
}

.social-links a.social-fb {
    background: #1877f2;
    color: #fff;
}

.social-links a.social-ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.social-links a.social-yt {
    background: #ff0000;
    color: #fff;
}

.social-links a:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

/* ========== MOBILE MENU ========== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-color);
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1060;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 1070;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
}

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

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

.mobile-menu-logo {
    height: 35px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-color);
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

.mobile-menu-nav {
    padding: 10px 0;
}

.mobile-menu-nav a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.mobile-menu-nav a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    text-decoration: none;
}

.mobile-menu-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
}

.mobile-menu-footer a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-color);
    font-size: 14px;
}

.mobile-menu-footer a:hover {
    color: var(--primary-color);
}

.mobile-menu-footer a i {
    font-size: 18px;
}

/* ========== RESPONSIVE ========== */

/* ---- Tablet (max 1199px) ---- */
@media (max-width: 1199px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .collection-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---- Tablet Portrait / Small Tablet (max 991px) ---- */
@media (max-width: 991px) {
    .header-left {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
        flex: 0 0 auto;
    }

    .category-nav {
        display: none;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

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

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges-row {
        gap: 30px;
    }

    .section-padding {
        padding: 40px 0;
    }

    .collections-section {
        padding: 30px 0;
    }

    .latest-collection,
    .bestsellers-section {
        padding: 40px 0;
    }

    .faq-section {
        padding: 40px 0;
    }

    .footer {
        padding: 40px 0 0;
    }
}

/* ---- Mobile (max 767px) ---- */
@media (max-width: 767px) {

    /* -- Page Width -- */
    .page-width {
        padding: 0 15px;
    }

    /* -- Top Bar -- */
    .top-bar {
        font-size: 11px;
        padding: 6px 10px;
        line-height: 1.4;
    }

    /* -- Header -- */
    .main-header {
        padding: 10px 0;
    }

    .header-logo img {
        height: 32px;
    }

    .header-icons {
        gap: 15px;
    }

    .header-icons a,
    .header-icons button {
        font-size: 20px;
    }

    .mobile-menu-toggle {
        font-size: 26px;
    }

    /* -- Hero Banner -- */
    .hero-section .carousel-item img {
        height: auto !important;
        min-height: unset !important;
        max-height: 100% !important;
        width: 100% !important;
        object-fit: contain;
    }

    /* -- Trust Badges -- */
    .trust-badges {
        padding: 20px 0;
    }

    .trust-badges-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .trust-item {
        gap: 6px;
    }

    .trust-icon {
        font-size: 26px;
    }

    .trust-text h6 {
        font-size: 13px;
    }

    .trust-text p {
        font-size: 11px;
    }

    /* -- Brand Reviews -- */
    .brand-reviews {
        padding: 30px 0;
    }

    .brand-reviews h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .reviews-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .review-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .review-item img {
        width: 45px;
        height: 45px;
    }

    .review-item span {
        font-size: 14px;
    }

    /* -- Section Titles -- */
    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .section-title-left {
        font-size: 20px;
    }

    .section-padding {
        padding: 30px 0;
    }

    /* -- Collections -- */
    .collections-section {
        padding: 25px 0;
    }

    .collection-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .collection-grid-5 {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 10px;
    }

    .collection-info {
        margin-top: 8px;
    }

    .collection-info h5 {
        font-size: 13px;
    }

    .collection-info i {
        font-size: 14px;
    }

    /* -- Latest Collection -- */
    .latest-collection {
        padding: 30px 0;
    }

    .latest-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
    }

    .latest-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }

    .latest-tabs span {
        font-size: 12px;
        padding: 5px 0;
    }

    /* -- Product Grid -- */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-image {
        aspect-ratio: 1;
    }

    .product-image img {
        padding: 5px;
    }

    .product-info {
        padding: 10px;
    }

    .product-rating {
        font-size: 11px;
        margin-bottom: 3px;
    }

    .product-brand {
        font-size: 10px;
        margin-bottom: 3px;
    }

    .product-title {
        font-size: 12px;
        margin-bottom: 5px;
        line-height: 1.3;
    }

    .current-price {
        font-size: 14px;
    }

    .original-price {
        font-size: 11px;
    }

    .discount {
        font-size: 10px;
    }

    .product-badge {
        font-size: 10px;
        padding: 3px 8px;
        top: 8px;
        left: 8px;
    }

    .product-actions {
        top: 8px;
        right: 8px;
        opacity: 1;
    }

    .product-actions button {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .view-all-btn {
        margin-top: 20px;
    }

    .view-all-btn .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    /* -- Best Sellers -- */
    .bestsellers-section {
        padding: 30px 0;
    }

    /* -- Features Section -- */
    .features-section {
        padding: 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-content {
        padding: 20px 15px;
        min-height: auto;
    }

    .feature-content i {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .feature-content h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .feature-content p {
        font-size: 13px;
    }

    /* -- FAQ -- */
    .faq-section {
        padding: 30px 0;
    }

    .faq-question {
        padding: 12px 15px;
    }

    .faq-question h5 {
        font-size: 14px;
    }

    .faq-answer p {
        padding: 15px;
        font-size: 13px;
    }

    /* -- Newsletter -- */
    .newsletter-section {
        padding: 30px 0;
    }

    .newsletter-section h3 {
        font-size: 18px;
    }

    .newsletter-section p {
        font-size: 13px;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }

    .newsletter-form input {
        padding: 10px 15px;
        font-size: 13px;
    }

    .newsletter-form button {
        padding: 12px 20px;
        font-size: 12px;
    }

    /* -- Footer -- */
    .footer {
        padding: 30px 0 0;
    }

    .footer-logo {
        max-width: 140px;
        margin-bottom: 15px;
    }

    .footer h5 {
        font-size: 13px;
        margin-bottom: 12px;
        margin-top: 10px;
    }

    .footer p {
        font-size: 12px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-links li {
        margin-bottom: 6px;
    }

    .footer-contact p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .footer-bottom {
        margin-top: 25px;
        padding: 15px 0;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    /* -- Buttons General -- */
    .btn-primary,
    .btn-outline-dark {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* ---- Small Mobile (max 480px) ---- */
@media (max-width: 480px) {

    /* -- Top Bar -- */
    .top-bar {
        font-size: 10px;
        padding: 5px 8px;
    }

    /* -- Header -- */
    .header-logo img {
        height: 28px;
    }

    .header-icons {
        gap: 12px;
    }

    .header-icons a,
    .header-icons button {
        font-size: 18px;
    }

    .cart-count {
        width: 16px;
        height: 16px;
        font-size: 9px;
        top: -6px;
        right: -8px;
    }

    /* -- Trust Badges -- */
    .trust-badges-row {
        gap: 15px;
    }

    .trust-icon {
        font-size: 22px;
    }

    .trust-text h6 {
        font-size: 12px;
    }

    .trust-text p {
        font-size: 10px;
    }

    /* -- Brand Reviews -- */
    .brand-reviews h2 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .reviews-row {
        gap: 15px;
    }

    .review-item img {
        width: 35px;
        height: 35px;
    }

    .review-item span {
        font-size: 12px;
    }

    /* -- Sections -- */
    .section-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .section-title-left {
        font-size: 18px;
    }

    /* -- Collections -- */
    .collection-info h5 {
        font-size: 12px;
    }

    /* -- Product Grid -- */
    .product-info {
        padding: 8px;
    }

    .product-brand {
        font-size: 9px;
        letter-spacing: 0.5px;
    }

    .product-title {
        font-size: 11px;
        margin-bottom: 4px;
    }

    .current-price {
        font-size: 13px;
    }

    .original-price {
        font-size: 10px;
    }

    .discount {
        font-size: 9px;
    }

    .product-actions button {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    /* -- Latest tabs -- */
    .latest-tabs span {
        font-size: 11px;
        padding: 4px 0;
    }

    /* -- Features -- */
    .feature-content {
        padding: 15px;
    }

    .feature-content h4 {
        font-size: 15px;
    }

    .feature-content p {
        font-size: 12px;
    }

    /* -- FAQ -- */
    .faq-question h5 {
        font-size: 13px;
    }

    .faq-answer p {
        font-size: 12px;
        padding: 12px;
    }

    /* -- Newsletter -- */
    .newsletter-section h3 {
        font-size: 16px;
    }

    .newsletter-section p {
        font-size: 12px;
        margin-bottom: 15px;
    }

    /* -- Footer -- */
    .footer {
        padding: 25px 0 0;
    }

    .footer-logo {
        max-width: 120px;
    }

    .footer h5 {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .footer p {
        font-size: 11px;
        line-height: 1.6;
    }

    .footer-links a {
        font-size: 11px;
    }

    .footer-contact p {
        font-size: 11px;
    }

    .social-links a {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    /* -- Category card -- */
    .category-card img {
        height: 150px;
    }

    .category-overlay h5 {
        font-size: 14px;
    }
}
