/* ============================================
   PRODUCT CARDS SECTION - 5 CARDS PER ROW
   ============================================ */

   
.product-cards-section {
    margin: 40px auto;
    max-width: 1400px;
    padding: 0 20px;
    font-family: 'Amazon Ember', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.section-subtitle {
    font-size: 18px;
    color: #565959;
    margin-bottom: 25px;
    line-height: 1.4;
    font-weight: 400;
}


/* Product Image */
.product-image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Product Details */
.product-details {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}





/* Price Section */
.product-price {
    margin-top: auto;
}

.price-main {
    font-size: 20px;
    font-weight: 700;
    color: #0F1111;
    margin-bottom: 4px;
}


/* Rating Section */
.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}


/* all product list in all-product pagee */
.product__item__pic {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.best-seller-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: red;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 3px;
}

.product__item__text h6 {
    font-size: 14px;
    margin: 5px 0;
}

.product__price {
    font-weight: 500;
    margin: 5px 0;
}

.product__actions a {
    color: black;
    background-color: white;
    border: 1px solid red;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 10px;
    margin-right: 5px;
    display: inline-block;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.product__actions a:hover {
    background-color: red;
    color: white;
    border-color: red;
}















/* Special Labels */
.special-label {
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 3px;
    margin-right: 6px;
    margin-bottom: 8px;
    display: inline-block;
}

.overall-pack {
    background: #f0f8ff;
    color: #0066b2;
    border: 1px solid #0066b2;
}


/* Product Series */
.product-series {
    font-size: 13px;
    color: #007185;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}

.product-series:hover {
    color: #c45500;
    text-decoration: underline;
}








/* ============================================
   ACCESSIBILITY & UTILITIES
   ============================================ */

/* Loading State */
.product-image-container.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Print Styles */
@media print {
    .product-cards-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .product-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .product-card:hover {
        transform: none;
        box-shadow: none;
    }
}







































 

/* title section */

/* ============================================
   E-COMMERCE SIMPLE TITLE SECTION
   ============================================ */

.minimal-title-section {
    margin: 30px auto 20px;
    max-width: 1400px;
    padding: 0 20px;
    font-family: 'Amazon Ember', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.minimal-title-container {
    text-align: left;
    margin-bottom: 30px;
    padding: 10px;
    /* background-color: beige; */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
            url('/public/frontend/img/banner/rsz_watch-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 250px;
}





.minimal-page-title {
    font-size: 32px;
    font-weight: 700;
    color: #e5f1f1;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.minimal-page-subtitle {
    font-size: 18px;
    font-weight: 100px;
    color: #e4eded;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.minimal-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #565959;
    margin-bottom: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.minimal-breadcrumb a {
    color: #97dde9;
    text-decoration: none;
}

.minimal-breadcrumb a:hover {
    color: #c45500;
    text-decoration: underline;
}

.minimal-breadcrumb span {
    color: #ebe4e4;
}

/* Filter and Sort Bar */
.filter-sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 30px;
}

.filter-sort-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #0F1111;
}

.filter-sort-item select {
    padding: 6px 12px;
    border: 1px solid #d5d9d9;
    border-radius: 4px;
    background: white;
    color: #0F1111;
    font-size: 14px;
    cursor: pointer;
}

/* Responsive for Minimal */
@media (max-width: 768px) {
    .minimal-title-section {
        padding: 0 15px;
    }

    .minimal-page-title {
        font-size: 28px;
    }

    .filter-sort-bar {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .minimal-page-title {
        font-size: 24px;
    }

    .minimal-page-subtitle {
        font-size: 15px;
    }

    .minimal-breadcrumb {
        font-size: 13px;
    }
}








/* ---------- Layout Container ---------- */
/* ---------- Container ---------- */
.single-product-page {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    padding: 15px;
    flex-wrap: wrap;
}

/* ---------- Left Gallery ---------- */
.single-product-gallery {
    flex: 1 1 45%;
    min-width: 250px;
}

.main-product-image {
    width: 100%;
    height: 420px;
    object-fit: contain;
    border-radius: 10px;
    background: #f7f7f7;
    padding: 15px;
    display: block;
}

/* ---------- Thumbnails ---------- */
.thumbnail-row {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.thumb-img {
    width: 80px;
    height: 80px;
    padding: 5px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: 0.3s;
}

.thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* ---------- Right Product Info ---------- */
.single-product-info {
    flex: 1 1 45%;
    min-width: 280px;
}



.single-product-title {
    font-size: 28px;
    font-weight: 700;
    margin: 15px 0;
}

.single-product-price .price-main {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.single-product-description {
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
}










/* ---------- Mobile Responsive ---------- */
@media (max-width: 575px) {
    .single-product-page {
        flex-direction: column;
        padding: 15px;
    }

    .main-product-image {
        height: 300px;
    }

    .thumb-img {
        width: 65px;
        height: 65px;
    }

    .single-product-title {
        font-size: 22px;
    }

    .single-product-price .price-main {
        font-size: 22px;
    }
}










/* product details page  */
.single-product-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 500px;
    margin-top: 20px;
}

.product-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: #28a745;
    /* green for in stock */
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 15px;
}

.product-badge:empty {
    display: none;
}

.single-product-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.single-product-price .price-main {
    font-size: 17px;
    font-weight: 600;
    color: #ff4d4f;
    margin-bottom: 20px;
    display: block;
}

.single-product-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

/* Buttons */
.add-to-cart-btns {
    display: flex;
    gap: 15px;
}

.add-to-cart-btns .btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Buy Now Button */
.buy-now-btn {
    background-color: #ff4d4f;
    color: #fff;
    border-color: #ff4d4f;
}

.buy-now-btn:hover {
    background-color: #fff;
    color: #ff4d4f;
}

/* Add to Cart Button */
.cart-btn {
    background-color: #fff;
    color: #ff4d4f;
    border-color: #ff4d4f;
}

.cart-btn:hover {
    background-color: #ff4d4f;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .single-product-info {
        max-width: 100%;
        margin-top: 30px;
        padding: 20px;
    }

    .add-to-cart-btns {
        flex-direction: column;
        gap: 10px;
    }
}














/* allpages.blade.php er style */

/* Breadcrumb */
.breadcrumb-area h1 {
    margin-bottom: 0.5rem;
}

.breadcrumb-area .separator {
    margin: 0 5px;
}

/* Content section */
.content-with-image {
    margin-top: 40px;
}

.content-text {
    margin-top: 40px;
}

.content-image {
    width: 100%;
    max-width: 420px;
    object-fit: cover;
}



/* About gallery */
.bg-white {
    background: #fff;
}
.bg-ash2{
    background-color: #f1ecec;
}

.bg-blue2{
    background-color: #18587a;
}

.about-img-box {
    overflow: hidden;
    border-radius: 8px;
}

.about-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s;
}

/* Optional hover effect for gallery images */
.about-img-box:hover .about-img {
    transform: scale(1.05);
}















/* customerOrderDetail.blade.php
all style */

/* Page container styling */
.section-fullscreen {
    min-height: 100vh;
    background-color: #ffffff;
    color: #000000;
    padding-top: 3rem;
    /* py-5 equivalent */
    padding-bottom: 3rem;
}

/* Print Styles */
.print-area {
    position: relative;
}

/* Print styles */
@media print {
    body * {
        visibility: hidden !important;
    }

    .print-area,
    .print-area * {
        visibility: visible !important;
    }

    .print-area {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }

    button {
        display: none !important;
    }
}




/* shippingInfo.blade.php
all style code
start */

/* Container */
.checkout-container {
    margin-top: 50px;
    margin-bottom: 50px;
}

/* Cards */
.shipping-card,
.order-summary-card {
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Section Title */
.section-title {
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

/* Payment Methods */
.payment-methods label {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
}

.payment-methods img {
    height: 30px;
    margin-left: 10px;
}

/* Place Order Button */
.place-order-btn {
    margin-top: 20px;
    width: 100%;
    font-weight: 600;
}

/* Cart List */
.cart-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cart-elem {
    margin-bottom: 15px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
}

/* Product Thumb */
.product-thumb {
    position: relative;
    width: 60px;
    height: 60px;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.quantity-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: red;
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 50%;
}

/* Price */
.price {
    min-width: 100px;
    text-align: right;
    font-weight: 600;
}

.subtotal {
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.total-price {
    min-width: 100px;
    text-align: right;
    font-weight: 700;
    color: #000;
}

/* shippingInfo.blade.php
end */




/* signIn.blade.php
style css
start */
/* Container spacing */
.cart-spacing {
    margin-top: 50px;
    margin-bottom: 50px;
}

/* end */





/* buynowform.blade.php
style start */

/* Container spacing */
.checkout-container {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

/* Card styling */
.checkout-card {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

/* Title spacing */
.section-title {
    margin-bottom: 20px;
}

/* Spacing utilities */
.gap-15 {
    gap: 15px;
}

.gap-10 {
    gap: 10px;
}

.summary-price {
    min-width: 100px;
    text-align: end;
}

.cart-elem {
    margin-bottom: 15px;
}

.pr-name {
    font-weight: 500;
}

/* end */




/* customerOrders.blade
style start */
.container-fullscreen {
    min-height: 100vh;
    background-color: #ffffff;
    color: #000000;
}

/* customerOrders.blade
style end */




/* search.blade.php 
style start */
.btn-add-cart {
    color: black;
    background-color: white;
    border: 1px solid red;
    padding: 5px 15px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}


/* search.blade.php 
style end */





/* shop_cart.blade
style start */

.cart-item-image {
    width: 70px;
    height: auto;
    object-fit: contain;
}

.btn-update-cart {
    color: red;
    border: 1px solid red;
    background: transparent;
    padding: 8px 18px;
    font-weight: 500;
    cursor: pointer;
}

.btn-update-cart:hover {
    background: red;
    color: #fff;
}

.btn-proceed-checkout {
    color: white !important;
}

/* shop_cart.blade
style end */





/* ----------------------- */
/* Subcategory and product details page */
.best-seller-badge,
.feature-badge,
.trending-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    font-size: 12px;
    padding: 3px 7px;
    border-radius: 3px;
    z-index: 10;
}

/* Different background colors for each badge */
.best-seller-badge {
    background-color: #ff5722;
}

.feature-badge {
    background-color: #4caf50;
}

.trending-badge {
    background-color: #f44336;
}

/* Stack badges vertically */
.product__item a span {
    display: block;
    margin-bottom: 3px;
}

/* ----------------------- */
/* Subcategory and product details page end */









/* ------------------ */
/* product style */

/* product page style */
.product-list-section .card {
    transition: all 0.3s ease;
}

.product-list-section .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-list-section .section-title {
    color: #FF7A00;
    font-weight: 600;
}

.product-list-section .section-summary {
    font-weight: 700;
}


/* Single Product Styles */
.single-product-section .card img {
    object-fit: cover;
}

.single-product-section .text-orange {
    color: #FF7A00;
}

.single-product-section ul li {
    font-size: 0.95rem;
}

/* Similar Products Styles */
.similar-products-section .card {
    transition: all 0.3s ease;
}

.similar-products-section .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.similar-products-section .section-title {
    color: #FF7A00;
}



/* Product Card Buttons */
.product-card-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    gap: 0.3rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

/* Cart button specific */
.product-card-buttons .cart-btn i {
    font-size: 1rem;
}

/* Hover effect */
.product-card-buttons .btn:hover {
    transform: translateY(-2px);
}

/* Responsive: stack buttons on small screens */
@media (max-width: 576px) {
    .product-card-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .product-card-buttons .btn {
        width: 100%;
    }
}

/* ------------------ */
/* ------------------end */