/* ============================================
   MINISHOP.HR - Custom Design System
   v2.0 - Redesign & SEO Optimizations
   ============================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
    --color-primary: #ff334f;
    --color-primary-dark: #e02240;
    --color-primary-light: rgba(255, 51, 79, 0.1);
    --color-text: #2c2c2c;
    --color-text-light: #6c757d;
    --color-border: #e8e8e8;
    --color-bg-light: #f8f9fa;
    --color-white: #ffffff;
    --font-primary: 'Poppins', sans-serif;
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 6px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
    --transition: all 0.3s ease;
}

/* ============================================
   BASE & IMAGE HELPERS
   ============================================ */

.crop {
    height: 300px;
    overflow: hidden;
    object-fit: cover;
}

.crop img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.crop-category {
    height: 100px;
    overflow: hidden;
    object-fit: cover;
}

.crop-category img {
    height: 100px;
    width: 100%;
    object-fit: cover;
}

.crop-product {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.crop-product img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.just-padding {
    padding: 15px;
}

/* ============================================
   LIST GROUP STYLES
   ============================================ */

.list-group.list-group-root {
    padding: 0;
    overflow: hidden;
}

.list-group.list-group-root .list-group {
    margin-bottom: 0;
}

.list-group.list-group-root .list-group-item {
    border-radius: 0;
    border-width: 1px 0 0 0;
}

.list-group.list-group-root > .list-group-item:first-child {
    border-top-width: 0;
}

.list-group.list-group-root > .list-group > .list-group-item {
    padding-left: 30px;
}

.list-group.list-group-root > .list-group > .list-group > .list-group-item {
    padding-left: 45px;
}

.list-group-item .glyphicon {
    margin-right: 5px;
}

.wrap {
    width: 100%;
}

/* ============================================
   TYPOGRAPHY OVERRIDES
   ============================================ */

.heading_s1 h1,
.heading_s1 h2,
.heading_s1 h3,
.heading_s1 h4,
.heading_s1 h5,
.heading_s1 h6,
.heading_s3 h1,
.heading_s3 h2,
.heading_s3 h3 {
    text-transform: none;
    font-weight: 700;
}

.product .product_title,
.product_box .product_title,
.product_wrap .product_title {
    text-transform: none;
}

/* ============================================
   ADMIN BUTTON
   ============================================ */

#adminbtn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    border-radius: var(--radius-sm);
    font-size: 13px;
    padding: 8px 16px;
}

/* ============================================
   ALERTS
   ============================================ */

.alert-success {
    color: #fff;
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.alert-danger {
    color: #fff;
    background-color: #f44336;
    border-color: #f44336;
}

.alert-primary {
    color: #fff;
    background-color: #2196F3;
    border-color: #2196F3;
}

.alert-warning {
    color: #fff;
    background-color: #ff9800;
    border-color: #ff9800;
}

.alert .close {
    color: #fff;
    font-weight: bold;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    text-transform: none;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: var(--transition);
}

.btn-fill-out {
    border-radius: var(--radius-sm);
}

.btn-addtocart {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.btn-addtocart i {
    margin-right: 8px;
}

/* ============================================
   HEADER IMPROVEMENTS
   ============================================ */

.header_wrap .top-header {
    background-color: #1c1c2e;
    padding: 7px 0;
}

.header_wrap .top-header .header_list {
    margin-bottom: 0;
}

.header_wrap .top-header .header_list li a,
.header_wrap .top-header .header_list li span {
    color: rgba(255, 255, 255, 0.80);
    font-size: 12.5px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.header_wrap .top-header .header_list li a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.header_wrap .bottom_header.dark_skin {
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.header_wrap .bottom_header .navbar-brand img {
    max-height: 42px;
    width: auto;
}

/* Search bar */
.search_wrap {
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.search_wrap .form-control {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-size: 14px;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */

/* Fix the hardcoded inline padding on product images */
.product img,
.product_box img,
img.photo_related_minmax {
    padding: 12px !important;
    transition: transform 0.4s ease;
}

/* Product card base */
.product,
.product_box {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    margin-bottom: 24px;
    position: relative;
}

.product:hover,
.product_box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.product:hover img,
.product_box:hover img {
    transform: scale(1.04);
}

/* Discount badge */
.product .pr_flash.bg-danger,
.product_box .pr_flash.bg-danger {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

/* Product info area */
.product .product_info,
.product_box .product_info {
    padding: 10px 14px 14px;
}

/* Product title */
.product .product_title,
.product_box .product_title {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 6px;
}

.product .product_title a,
.product_box .product_title a {
    font-weight: 500;
    color: var(--color-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.product .product_title a:hover,
.product_box .product_title a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

/* Price */
.product .product_price .price,
.product_box .product_price .price {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-primary);
}

.product .product_price .line-through-text,
.product_box .product_price .line-through-text {
    font-size: 12.5px;
    color: var(--color-text-light);
    text-decoration: line-through;
    margin-right: 5px;
    font-weight: 400;
}

/* Hide cluttered description from cards */
.product .pr_desc {
    display: none;
}

/* Add to cart in product_box (homepage grid) */
.product_box .add-to-cart {
    padding: 0 14px 14px;
}

.product_box .add-to-cart .btn {
    width: 100%;
    font-size: 13px;
    padding: 9px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

/* Product detail gallery image */
.product_img_box {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

/* ============================================
   SHOP INFO ICONS (homepage + product)
   ============================================ */

.icon_box_style1,
.icon_box_style3 {
    padding: 22px 18px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid transparent;
}

.icon_box_style1:hover,
.icon_box_style3:hover {
    background: var(--color-bg-light);
    border-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.icon_box h5,
.icon_box h6 {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 15px;
}

.icon_box p {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb_section {
    padding: 16px 0;
}

.breadcrumb_section .page-title h1 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
    font-size: 13px;
}

.breadcrumb-item a {
    color: var(--color-text-light);
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--color-text);
    font-weight: 500;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 50px 0;
}

.section.small_pt {
    padding-top: 30px;
}

.section.small_pb,
.section.pb_70 {
    padding-bottom: 30px;
}

/* ============================================
   NEWSLETTER
   ============================================ */

#newsletter_section {
    background: linear-gradient(135deg, #ff334f 0%, #c0392b 100%);
    padding: 40px 0;
}

#newsletter_section .heading_s1 h3 {
    font-size: 21px;
    font-weight: 600;
    color: #fff;
}

.newsletter_form {
    display: flex;
}

.newsletter_form input.form-control {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    border: none;
    height: 46px;
    font-size: 14px;
    padding: 0 16px;
    flex: 1;
}

.newsletter_form input.form-control:focus {
    box-shadow: none;
    outline: none;
}

.newsletter_form .btn {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    height: 46px;
    padding: 0 24px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    border-left: none;
}

/* ============================================
   FOOTER
   ============================================ */

.footer_dark .footer_top {
    padding: 48px 0 28px;
}

.footer_dark .widget_title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer_dark .widget_links li {
    margin-bottom: 8px;
}

.footer_dark .widget_links li a {
    font-size: 13.5px;
    transition: color 0.2s, padding-left 0.2s;
    opacity: 0.75;
}

.footer_dark .widget_links li a:hover {
    padding-left: 5px;
    opacity: 1;
    text-decoration: none;
}

.footer_dark .contact_info_light li {
    padding: 5px 0;
}

.footer_dark .contact_info_light li p,
.footer_dark .contact_info_light li a {
    font-size: 13.5px;
    line-height: 1.6;
    opacity: 0.78;
}

.bottom_footer {
    padding: 16px 0;
}

.bottom_footer p {
    font-size: 13px;
    opacity: 0.65;
}

/* ============================================
   CART PAGE
   ============================================ */

.shop_cart_table th {
    font-weight: 600;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 12px 16px;
}

.shop_cart_table td {
    vertical-align: middle;
    padding: 12px 16px;
}

.cart_total_label {
    font-weight: 500;
    font-size: 14px;
}

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

/* ============================================
   CHECKOUT / ORDER PAGE
   ============================================ */

.order_review {
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--color-border);
}

.order_review .heading_s1 h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* ============================================
   FORMS
   ============================================ */

.form-control {
    border-radius: var(--radius-sm);
    border-color: var(--color-border);
    font-size: 14px;
    padding: 10px 14px;
    height: auto;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    color: var(--color-text);
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 51, 79, 0.12);
    color: var(--color-text);
}

.form-group {
    margin-bottom: 16px;
}

/* ============================================
   LOGIN / REGISTER
   ============================================ */

.login_wrap {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.padding_eight_all {
    padding: 32px;
}

.btn-facebook {
    background-color: #1877f2;
    color: #fff;
    border-color: #1877f2;
    border-radius: var(--radius-sm);
}

.btn-facebook:hover {
    background-color: #166fe5;
    color: #fff;
    border-color: #166fe5;
}

.btn-google {
    background-color: #db4437;
    color: #fff;
    border-color: #db4437;
    border-radius: var(--radius-sm);
}

.btn-google:hover {
    background-color: #c23321;
    color: #fff;
    border-color: #c23321;
}

/* ============================================
   PAGINATION
   ============================================ */

.pagination .page-link {
    border-radius: var(--radius-sm) !important;
    margin: 0 3px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--color-text);
    border-color: var(--color-border);
    padding: 7px 13px;
    transition: var(--transition);
}

.pagination .page-item.active .page-link {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.pagination .page-link:hover {
    background-color: var(--color-bg-light);
    border-color: var(--color-border);
    color: var(--color-primary);
    text-decoration: none;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */

.pr_detail .product_description .product_title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--color-text);
}

.pr_detail .product_price {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.pr_detail .product_price .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.pr_detail .product_price del {
    font-size: 16px;
    color: var(--color-text-light);
    font-weight: 400;
}

.pr_detail .on_sale span {
    background: var(--color-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

/* Quantity input */
.quantity input[type="text"] {
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: var(--color-text);
}

/* Product tabs */
.tab-style3 .nav-tabs {
    border-bottom: 2px solid var(--color-border);
    margin-bottom: 24px;
}

.tab-style3 .nav-tabs .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-light);
    border: none;
    padding: 10px 24px;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    border-radius: 0;
    transition: color 0.2s, border-color 0.2s;
}

.tab-style3 .nav-tabs .nav-link:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.tab-style3 .nav-tabs .nav-link.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    background: transparent;
    font-weight: 600;
}

.shop_info_tab {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--color-text);
}

/* Product meta (category link) */
.product-meta {
    padding: 0;
    list-style: none;
}

.product-meta li {
    font-size: 13.5px;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.product-meta li a {
    color: var(--color-primary);
    font-weight: 500;
}

.product-meta li a:hover {
    text-decoration: underline;
}

/* ============================================
   SIDEBAR
   ============================================ */

.sidebar .widget {
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--color-border);
    margin-bottom: 20px;
}

.sidebar .widget_title {
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
    color: var(--color-text);
}

.sidebar .widget_categories li {
    padding: 7px 0;
    border-bottom: 1px solid var(--color-border);
}

.sidebar .widget_categories li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar .widget_categories li a {
    font-size: 13.5px;
    color: var(--color-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.sidebar .widget_categories li a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.sidebar .widget_categories li a.text-danger {
    color: var(--color-primary) !important;
    font-weight: 600;
}

.categories_num {
    font-size: 11.5px;
    color: var(--color-text-light);
    background: var(--color-border);
    padding: 1px 8px;
    border-radius: 10px;
    font-weight: 500;
}

/* ============================================
   BANNER SECTION (stare stranice - ostaje kompatibilnost)
   ============================================ */

.banner_content2 h2,
.banner_content h2 {
    font-weight: 800;
    font-size: 2.4rem;
    line-height: 1.25;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.banner_content2 h5,
.banner_content h5 {
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.banner_content2 p,
.banner_content p {
    font-size: 15px;
    line-height: 1.7;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    max-width: 500px;
}

/* ============================================
   HOMEPAGE SLIDER - fiksna pozadina + slika desno
   ============================================ */

.homepage-slider-wrap {
    background: #1a1a2e;
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
}

/* Override teme koja forsira height: 800px na .carousel-item unutar .banner_section */
.banner_section.homepage-slider-wrap,
.banner_section.homepage-slider-wrap .carousel-item {
    height: auto !important;
}

.homepage-slide {
    padding: 0;
    min-height: 500px;
    align-items: center;
    background: transparent;
}

.carousel-item.active.homepage-slide,
.carousel-item-next.homepage-slide,
.carousel-item-prev.homepage-slide {
    display: flex;
}

.homepage-slide-row {
    min-height: 500px;
    padding: 60px 0 40px;
}

/* Tekst na lijevoj strani */
.homepage-slide-text {
    position: relative;
    z-index: 2;
    padding-right: 20px;
}

.homepage-slide-text h5 {
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
    text-shadow: none;
}

.homepage-slide-text h2 {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 28px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.homepage-slide-text .btn-line-fill {
    font-size: 14px;
    font-weight: 600;
    padding: 12px 32px;
    letter-spacing: 0.5px;
}

/* Slika proizvoda desno */
.homepage-slide-img-wrap {
    position: relative;
    z-index: 2;
    padding: 20px 10px;
}

.homepage-slide-img {
    max-height: 380px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.45));
    animation: homepageSlideFloat 4s ease-in-out infinite;
}

@keyframes homepageSlideFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px); }
}

/* Carousel navigacija */
.homepage-slider-wrap .carousel-control-prev,
.homepage-slider-wrap .carousel-control-next {
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: background 0.2s, box-shadow 0.2s;
    margin: 0 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.homepage-slider-wrap .carousel-control-prev:hover,
.homepage-slider-wrap .carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45), 0 0 0 2px rgba(255, 255, 255, 0.45);
}

.homepage-slider-wrap .carousel-control-prev i,
.homepage-slider-wrap .carousel-control-next i {
    color: #fff;
    font-size: 18px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Indikatori (točkice) */
.homepage-indicators {
    bottom: 16px;
    margin: 0;
}

.homepage-indicators li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.homepage-indicators li.active {
    background: var(--color-primary);
    width: 26px;
    border-radius: 4px;
}

/* ============================================
   RESPONSIVE - HOMEPAGE SLIDER
   ============================================ */

@media (max-width: 991px) {
    .homepage-slide-text h2 {
        font-size: 2rem;
    }

    .homepage-slide-img {
        max-height: 260px;
    }
}

@media (max-width: 767px) {
    .homepage-slide {
        min-height: auto;
    }

    .homepage-slide-row {
        min-height: auto;
        padding: 30px 0 50px;
        text-align: center;
    }

    .homepage-slide-text {
        padding-right: 0;
    }

    .homepage-slide-text h2 {
        font-size: 1.7rem;
        margin-bottom: 18px;
    }

    .homepage-slide-text h5 {
        font-size: 12px;
    }

    .homepage-slide-img {
        max-height: 200px;
        margin-bottom: 20px;
    }

    .homepage-slide-img-wrap {
        padding: 10px 10px 0;
    }

    @keyframes homepageSlideFloat {
        0%, 100% { transform: translateY(0px); }
        50%       { transform: translateY(-6px); }
    }
}

/* ============================================
   SHOP PRODUCT CARD - VIEW BUTTON
   ============================================ */

.product-card-view-btn {
    display: block;
    text-align: center;
    margin: 8px 14px 14px;
    padding: 8px 16px;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    transition: var(--transition);
    text-decoration: none;
}

.product-card-view-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    text-decoration: none;
    transform: none;
}

.product-card-view-btn i {
    margin-right: 6px;
    font-size: 12px;
}

/* ============================================
   RELATED PRODUCTS SECTION
   ============================================ */

.heading_s1 h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* ============================================
   PRODUCT GRID
   ============================================ */

.shop_container .col-lg-3,
.shop_container .col-md-4,
.shop_container .col-6 {
    margin-bottom: 4px;
}

/* ============================================
   MEDIA QUERIES
   ============================================ */

@media only screen and (max-width: 1199px) {
    .deal_wrap .product_img {
        max-width: 100%;
    }
}

@media only screen and (max-width: 991px) {
    .banner_content2 h2,
    .banner_content h2 {
        font-size: 1.9rem;
    }

    .section {
        padding: 40px 0;
    }
}

@media only screen and (max-width: 767px) {
    .section {
        padding: 32px 0;
    }

    .product .product_title a,
    .product_box .product_title a {
        font-size: 13px;
    }

    .product .product_price .price,
    .product_box .product_price .price {
        font-size: 15px;
    }

    .pr_detail .product_description .product_title {
        font-size: 19px;
    }

    .pr_detail .product_price .price {
        font-size: 23px;
    }

    .banner_content2 h2,
    .banner_content h2 {
        font-size: 1.5rem;
    }

    .padding_eight_all {
        padding: 24px 18px;
    }

    #newsletter_section .heading_s1 {
        margin-bottom: 16px;
    }
}

@media only screen and (max-width: 575px) {
    .product img,
    .product_box img,
    img.photo_related_minmax {
        padding: 8px !important;
    }

    .heading_s1 h2,
    .heading_s3 h2 {
        font-size: 19px;
    }

    .breadcrumb_section .page-title h1 {
        font-size: 17px;
    }
}
