/* ========================================
   FONTS & GENERAL STYLES
   ======================================== */
@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap);

body {
    margin: 0;
    padding: 0;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    background: #f7f7f7;
}

/* ========================================
   TOP BANNER
   ======================================== */
.top-banner {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 0.9rem;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.main-header {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.front_logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.logo,
.logo:hover,
.nav-link-custom {
    color: #333;
    text-decoration: none;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: serif;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link-custom {
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

.nav-link-custom:hover,
.social-icon:hover,
.user-icon:hover {
    color: #007bff;
}

.dropdown-toggle::after {
    margin-left: 8px;
}

/* Header Icons & Social Media */
.header-icons,
.cart-info {
    align-items: center;
    display: flex;
}

.header-icons {
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-right: 30px;
}

.social-icon {
    color: #666;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.cart-info {
    gap: 8px;
    position: relative;
}

.cart-badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-icon {
    color: #666;
    font-size: 1.3rem;
    transition: color 0.3s;
}

/* Mobile Navigation */
.mobile-menu-btn,
.mobile-search-btn {
    background: transparent;
    color: #333;
    padding: 5px;
    border: none;
}

.mobile-nav {
    display: none;
}

.mobile-menu-btn {
    font-size: 1.5rem;
}

.mobile-search-btn {
    font-size: 1.3rem;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

/* ========================================
   CAROUSEL/BANNER
   ======================================== */
.carousel-item img {
    width: 100%;
    height: 100%;
}

/* ========================================
   LATEST COLLECTION SECTION
   ======================================== */
.latest-collection {
    padding: 60px 0;
    background: #fff;
}

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

.section-title {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    letter-spacing: 1px;
}

.view-all-btn {
    border: 2px solid #333;
    background: transparent;
    padding: 7px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
    letter-spacing: 1px;
    transition: 0.3s;
    text-decoration: none;
    display: inline-block;
}

.view-all-btn:hover {
    background: #333;
    color: #fff;
}

/* ========================================
   PRODUCT CARDS
   ======================================== */
.product-card {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.product-image-container {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    border-radius: 0;
    margin-bottom: 20px;
}

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

.product-image img {
    height: 300px;
}

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

/* Cart Icon Overlay on Product */
.cart-icon-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: translateY(-10px);
    transition: 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.product-card:hover .cart-icon-overlay {
    opacity: 1;
    transform: translateY(0);
}

.cart-icon-overlay i {
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.cart-icon-overlay:hover {
    background: #333;
    color: #fff;
}

.cart-icon-overlay:hover i {
    color: #fff;
}

/* Product Info */
.product-info {
    text-align: left;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-rating {
    margin-bottom: 10px;
}

.star-rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #ddd;
    font-size: 0.9rem;
}

.star.filled {
    color: #ffc107;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
}

.testimonial-card {
    padding: 20px;
    margin-bottom: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.feedbackImage {
    width: 50px !important;
    height: 50px !important;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
    font-weight: 400;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '"';
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-name {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Avatar Gradients */
.avatar-1 {
    background: linear-gradient(45deg, #d4855a, #f4a870);
}

.avatar-2 {
    background: linear-gradient(45deg, #8b7355, #b8a082);
}

.avatar-3 {
    background: linear-gradient(45deg, #6b8ca3, #8bb5d1);
}

.avatar-4 {
    background: linear-gradient(45deg, #a67c5a, #d4a574);
}

/* ========================================
   SPECIAL OFFERS SECTION
   ======================================== */
/*.special-offers-section {*/
/*    position: relative;*/
/*    background-size: 100% 100%;*/
/*    background-position: center;*/
/*    background-repeat: no-repeat;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    overflow: hidden;*/
/*    padding: 60px 0;*/
/*    min-height: 500px;*/
/*}*/

/*.background-overlay {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: rgba(0, 0, 0, 0.4);*/
/*    z-index: 1;*/
/*}*/

/*.content-wrapper {*/
/*    position: relative;*/
/*    z-index: 2;*/
/*    color: #fff;*/
/*    max-width: 800px;*/
/*    padding: 0 20px;*/
/*    text-align: center;*/
/*}*/

/*.special-offers-label {*/
/*    font-size: 1.2rem;*/
/*    font-weight: 600;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 3px;*/
/*    margin-bottom: 20px;*/
/*    opacity: 0.9;*/
/*}*/

/*.main-offer-text {*/
/*    font-size: 4.5rem;*/
/*    font-weight: 700;*/
/*    line-height: 1.1;*/
/*    margin-bottom: 40px;*/
/*    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);*/
/*}*/

/*.shop-now-btn {*/
/*    background: transparent;*/
/*    color: #fff;*/
/*    border: 2px solid #fff;*/
/*    padding: 15px 40px;*/
/*    font-size: 1.1rem;*/
/*    font-weight: 600;*/
/*    letter-spacing: 2px;*/
/*    text-transform: uppercase;*/
/*    transition: 0.3s;*/
/*    text-decoration: none;*/
/*    display: inline-block;*/
/*}*/

/*.shop-now-btn:hover {*/
/*    background: #fff;*/
/*    color: #333;*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);*/
/*}*/

/* ========================================
   BLOG SECTION
   ======================================== */
.blog-section {
    padding: 80px 0;
    background: #fff;
}

.blog-card {
    margin-bottom: 30px;
    transition: transform 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 100%;
    padding: 10px;
}

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

.blog-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 25px;
    aspect-ratio: 16/10;
}

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

.blog-content {
    padding: 0 5px;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: #666;
}

.blog-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* ========================================
   FOOTER SERVICES SECTION
   ======================================== */
.footer-services-section {
    background: #f5f5f5;
    padding: 50px 0;
}

.services-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.services-left {
    display: flex;
    gap: 80px;
    flex: 1;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.service-icon {
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-icon i {
    font-size: 1.2rem;
    color: #fff;
}

.service-content h3 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
    margin: 0 0 8px;
}

.service-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.divider {
    width: 1px;
    height: 80px;
    background: #ddd;
    flex-shrink: 0;
}

/* Newsletter Section */
.newsletter-section {
    flex: 1;
    max-width: 400px;
}

.newsletter-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 20px;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 0;
    outline: 0;
    background: #fff;
}

.newsletter-input:focus {
    border-color: #d4c5b8;
    box-shadow: none;
}

.newsletter-input::placeholder {
    color: #aaa;
}

.subscribe-btn {
    background: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    transition: 0.3s;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: #000;
    border-color: #000;
    color: #fff;
}

/* ========================================
   MAIN FOOTER
   ======================================== */
.main-footer {
    background: #000;
    color: #fff;
    padding: 60px 0 0;
}

.footer-content {
    padding-bottom: 0;
    border-bottom: 1px solid #4a4a5a;
}

.footer-logo {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    font-family: serif;
}

.footer-description {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #ccc;
    font-size: 1.3rem;
    transition: color 0.3s;
    text-decoration: none;
}

.social-link:hover {
    color: #fff;
}

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 25px;
}

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

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

.footer-links a {
    color: #ccc;
    font-size: 1rem;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.contact-info {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #999;
    font-size: 0.9rem;
}

.copyright a {
    color: #ccc;
    text-decoration: none;
}

.copyright a:hover {
    color: #fff;
}

.payment-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-icon {
    background: #4a4a5a;
    padding: 8px 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

/* ========================================
   PRODUCT DETAIL PAGE
   ======================================== */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 10px;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.category-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    display: inline-block;
}

.product-title {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.free-shipping {
    color: #28a745;
    font-size: 14px;
    margin-bottom: 20px;
}

.product-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px;
}

.btn-add-cart {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
}

.btn-add-cart:hover {
    background: #000;
    color: #fff;
}

.category-info {
    margin: 30px 0;
    color: #6c757d;
    font-size: 14px;
}

.safe-checkout {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.safe-checkout h6 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Payment Icons */
.payment-icon {
    width: 50px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 12px;
}

.visa {
    background: #1a1f71;
}

.mastercard {
    background: #eb001b;
}

.amex {
    background: #006fcf;
}

.discover {
    background: #ff6000;
}

/* Product Tabs */
.nav-tabs {
    border-bottom: 1px solid #dee2e6;
    margin-top: 40px;
}

.nav-tabs .nav-link {
    color: #6c757d;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 15px 0;
    margin-right: 30px;
    background: transparent;
}

.nav-tabs .nav-link.active {
    color: #2c3e50;
    border-bottom-color: #2c3e50;
    background: transparent;
}

.tab-content {
    padding: 30px 0;
}

.description-text {
    color: #6c757d;
    line-height: 1.6;
}

/* Product Images */
.zoom-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.zoomContainer {
    z-index: 999;
}

.zoomLens {
    border: 2px solid #2c3e50 !important;
}

.product-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    cursor: crosshair;
}

.product-image1 {
    position: relative;
}

.image-gallery {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.thumbnail-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.thumbnail-image.active,
.thumbnail-image:hover {
    border-color: #2c3e50;
}

/* ========================================
   SHOPPING CART SIDEBAR
   ======================================== */
.cart-info {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
}

.cart-info:hover {
    color: #34495e;
    text-decoration: none;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

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

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

.shopping-cart {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    transition: right 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
}

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

.cart-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.cart-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.cart-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cart-close:hover {
    color: #2c3e50;
}

.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f1f1f1;
    position: relative;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

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

.cart-item-name {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px;
    line-height: 1.4;
}

.cart-item-price {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6c757d;
    font-size: 14px;
}

.cart-item-quantity,
.cart-item-total {
    color: #2c3e50;
    font-weight: 600;
}

.cart-item-total {
    font-size: 16px;
}

.cart-item-remove {
    position: absolute;
    top: 15px;
    right: 0;
    background: transparent;
    border: none;
    color: #6c757d;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
}

.cart-item-remove:hover {
    background: #f8f9fa;
    color: #e74c3c;
}

.empty-cart {
    padding: 60px 20px;
    color: #6c757d;
    text-align: center;
}

.empty-cart i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-btn1,
.cart-btn-view1,
.cart-btn-checkout1 {
    padding: 12px 20px;
    border: none;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
}

.cart-btn-view1 {
    background: #000;
    color: #fff;
}

.cart-btn-view1:hover {
    background: #000;
    color: #fff;
}

.cart-btn-checkout1 {
    background: #000;
    color: #fff;
}

.cart-btn-checkout1:hover {
    background: #000;
    color: #fff;
}

/* ========================================
   NEW ARRIVALS SECTION
   ======================================== */
.new-arrivals-section {
    background: #fff;
}

.new-arrivals-section .product-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.new-arrivals-section .product-card img {
    width: 100%;
    height: 100%;
    display: block;
}

.new-arrivals-section .product-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    text-align: center;
}

.new-arrivals-section .product-name {
    color: #fff;
    margin: 0;
    font-size: 16px;
}

.new-arrivals-section .big-product .product-name {
    font-size: 20px;
    font-weight: 700;
}

.new-arrivals-section .big-product {
    height: 520px;
}

.new-arrivals-section .small-product {
    height: 240px;
}

/* ========================================
   ABOUT AREA
   ======================================== */
.about-area {
    padding: 40px 0;
}

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

/* Large Devices (>= 1400px) */
@media (min-width: 1400px) {
    .service-content h3 {
        margin-top: 13px !important;
    }
}

/* Tablet & Below (max-width: 991.98px) */
@media (max-width: 991.98px) {
    .desktop-nav,
    .social-icons,
    .user-icon {
        display: none;
    }

    .mobile-nav {
        display: flex;
    }

    .logo {
        font-size: 2rem;
    }

    .main-header {
        padding: 12px 0;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .main-offer-text {
        font-size: 3.5rem;
    }

    .special-offers-section {
        min-height: auto;
    }

    .blog-section {
        padding: 60px 0;
    }

    .new-arrivals-section .big-product {
        height: 400px;
    }

    .new-arrivals-section .small-product {
        height: 200px;
    }

    .services-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .services-left {
        justify-content: center;
        gap: 60px;
    }

    .divider {
        display: none;
    }

    .newsletter-section {
        max-width: 500px;
        width: 100%;
    }

    .main-footer {
        padding: 50px 0 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Mobile Landscape (max-width: 767.98px) */
@media (max-width: 767.98px) {
    .latest-collection {
        padding: 40px 0;
    }

    .product-card {
        margin-bottom: 25px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 0;
    }

    .testimonial-card {
        margin-bottom: 40px;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .testimonials-section {
        padding: 50px 0;
    }

    .blog-title {
        font-size: 1.3rem;
    }

    .blog-excerpt {
        font-size: 0.95rem;
    }

    .blog-section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

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

    .services-left {
        flex-direction: column;
        gap: 30px;
    }

    .service-item {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

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

    .footer-logo {
        font-size: 2.5rem;
        text-align: center;
    }

    .footer-description {
        text-align: center;
        max-width: 100%;
    }

    .social-links {
        justify-content: center;
        margin-bottom: 40px;
    }

    .footer-column {
        text-align: center;
        margin-bottom: 30px;
    }

    .payment-icons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .shopping-cart {
        width: 100%;
        right: -100%;
    }
}

/* Mobile Portrait (max-width: 576px) */
@media (max-width: 576px) {
    .logo {
        font-size: 1.8rem;
    }

    .top-banner {
        font-size: 0.8rem;
        padding: 6px 0;
    }

    .banner img {
        width: 100%;
        height: 100% !important;
    }

    .testimonial-quote {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .author-name {
        font-size: 0.9rem;
    }

    .main-offer-text {
        font-size: 2.2rem;
    }

    /*.special-offers-label {*/
    /*    font-size: 0.9rem;*/
    /*    letter-spacing: 1.5px;*/
    /*    margin-bottom: 15px;*/
    /*}*/

    /*.shop-now-btn {*/
    /*    padding: 10px 25px;*/
    /*    font-size: 0.9rem;*/
    /*}*/

    .content-wrapper {
        padding: 0 15px;
    }

    .blog-title {
        font-size: 1.2rem;
    }

    .blog-excerpt {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .services-container {
        gap: 30px;
    }

    .product-image img,
    .product-main-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .new-arrivals-section .big-product {
        height: 300px;
    }

    .new-arrivals-section .small-product {
        height: 180px;
    }

    .carousel-item img {
        height: 100%;
    }
}

/* Extra Small Devices (320px - 575px) */
@media (min-width: 320px) and (max-width: 575px) {
    /* Logo full responsive */
    .front_logo {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* Service item alignment */
    .service-item {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    /* Service content alignment */
    .service-content {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start !important;
        margin-top: 10px;
    }

    .special-offers-section {
        min-height: auto !important;
        width: 100% !important;
    }
}