/*
 * Easy Web Sites Ltd. Shop
 * Custom Theme Stylesheet
 * Author: Easy Web Sites Ltd. | easywebsites.co.uk
 */

/*----------------------------------------*/
/*  GOOGLE FONTS
/*----------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500&family=Playfair+Display&display=swap');

/*----------------------------------------*/
/*  BASE HTML + BODY
/*----------------------------------------*/
html {
    font-size: 16px; /* 1rem = 16px (Bootstrap 5 baseline) */
}

body {
    font-family: "Heebo", sans-serif;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    width: 100%;
}

/*----------------------------------------*/
/*  WhatsApp Button
/*----------------------------------------*/

/* Fixed bottom-right with padding for Bootstrap 3 */
.whatsapp-fixed {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 1000;
}
.whatsapp-fixed img {
    height: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: box-shadow 0.2s;
}
.whatsapp-fixed img:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.22);
}

/*----------------------------------------*/
/*  CONTAINERS (Bootstrap 5 mimic)
/*----------------------------------------*/
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media(min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media(min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media(min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media(min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media(min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/*----------------------------------------*/
/*  HEADINGS
/*----------------------------------------*/
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    color: #222;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    margin-top: 0;
    line-height: 1.2;
}

/* Responsive fluid typography */
h1, .h1 {
    font-size: clamp(2.25rem, 6vw, 3.5rem); /* 36px–56px */
}

h2, .h2 {
    font-size: clamp(2rem, 5vw, 3rem); /* 32px–48px */
}

h3, .h3 {
    font-size: clamp(1.75rem, 4vw, 2.5rem); /* 28px–40px */
}

h4, .h4 {
    font-size: clamp(1.5rem, 3vw, 2rem); /* 24px–32px */
}

h5, .h5 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem); /* 20px–24px */
}

h6, .h6 {
    font-size: clamp(1rem, 2vw, 1.25rem); /* 16px–20px */
}

/* Font Awesome sizing reset */
.fa {
    font-size: 14px;
}

/* Paragraph spacing */
p {
    margin-bottom: 1.2em;
}

/*----------------------------------------*/
/*  TEXT + FORMS
/*----------------------------------------*/
a {
    color: #007acc;
}

a:hover {
    text-decoration: none;
    color: #000;
}

legend {
    font-size: 18px;
    padding: 7px 0;
}

label {
    font-size: 12px;
    font-weight: normal;
}

select.form-control, textarea.form-control, input[type="text"].form-control, input[type="password"].form-control, input[type="datetime"].form-control, input[type="datetime-local"].form-control, input[type="date"].form-control, input[type="month"].form-control, input[type="time"].form-control, input[type="week"].form-control, input[type="number"].form-control, input[type="email"].form-control, input[type="url"].form-control, input[type="search"].form-control, input[type="tel"].form-control, input[type="color"].form-control {
    font-size: 12px;
}

.input-group input, .input-group select, .input-group .dropdown-menu, .input-group .popover {
    font-size: 12px;
}

.input-group .input-group-addon {
    font-size: 12px;
    height: 30px;
}

span.hidden-xs, span.hidden-sm, span.hidden-md, span.hidden-lg {
    display: inline;
}

.tab-content > .tab-pane {
    border: 1px solid #ddd;
    border-width: 0px 1px 1px 1px;
    padding: 15px;
}

div.required .control-label:before {
    content: '* ';
    color: #f00;
    font-weight: bold;
}

/*----------------------------------------*/
/*  DROPDOWN
/*----------------------------------------*/
.dropdown-menu li > a:hover {
    text-decoration: none;
    color: #007acc;
    background-color: #eee;
}

.dropdown-menu {
    border: none;
}

/*----------------------------------------*/
/*  PRODUCT WRAPPER
/*----------------------------------------*/
#product {
    margin-top: 10px;
}

/*----------------------------------------*/
/*  TOP BAR + CURRENCY / LANGUAGE SELECTORS
/*----------------------------------------*/
#top {
    background-color: #000;
    padding: 0;
    margin: 0;
    min-height: 36px;
}

#top .container {
    padding: 0 20px;
}

#top #form-currency .currency-select, #top #form-language .language-select {
    text-align: left;
    color: #333;
    font-size: 13px;
    padding: 3px 16px;
}

#top #form-currency .currency-select:hover, #top #form-language .language-select:hover {
    text-shadow: none;
    text-decoration: none;
    color: #007acc;
    background-color: #eee;
}

/* Top bar link styles */
#top .btn-group > .btn-link, #top-links > ul > li, #top-links > ul > li > a {
    color: #bbb;
    background: none;
    text-decoration: none;
}

#top .btn-group > .btn-link:hover, #top-links > ul > li > a:hover {
    color: #eee;
}

/* Top bar dropdown menu links */
#top-links .dropdown-menu a {
    text-shadow: none;
    font-size: 13px;
}

#top .btn-link strong {
    font-size: 14px;
    line-height: 14px;
}

#top-links {
    padding-top: 6px;
}

#top-links a + a {
    margin-left: 15px;
}

/*----------------------------------------*/
/*  HEADER / LOGO
/*----------------------------------------*/
header {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #022a04;
}

#logo {
    margin: 0 0 15px 0;
}

#logo img {
    max-height: 160px;
}

/*----------------------------------------*/
/*  SEARCH BAR
/*----------------------------------------*/
#search {
    margin-bottom: 15px;
}

#search .input-lg {
    height: 40px;
    line-height: 20px;
    padding: 0 10px;
    border: 1px solid #e0e0e0;
    box-shadow: none;
    border-right: none;
}

#search .btn-lg {
    color: #999;
    font-size: 15px;
    line-height: 18px;
    padding: 10px 15px;
    text-shadow: none;
    box-shadow: none;
    background: none;
    border: 1px solid #c49a43;
    border-left: none;
}

/*----------------------------------------*/
/*  CART STYLES
/*----------------------------------------*/
#cart {
    margin-bottom: 15px;
    float: right;
}

#cart > .btn {
    font-size: 14px;
    line-height: 18px;
    color: #fff;
    background: none;
    border: none;
    text-shadow: none;
    box-shadow: none;
}

#cart > .btn .fa {
    font-size: 22px;
    color: #c49a43;
}

#cart.open > .btn {
    background-image: none;
    color: #007acc;
}

#cart.open > .btn:hover {
    color: #007acc;
}

#cart .dropdown-menu {
    z-index: 1001;
    min-width: 350px;
}

/* Responsive cart / logo adjustments */
@media(max-width: 767px) {
    #cart {
        float: none;
        text-align: center;
        display: block;
    }

    #cart > .btn {
        float: none;
        padding: 0;
    }

    #cart .dropdown-menu {
        color: #222;
    }

    #logo {
        text-align: center;
    }

    #logo img {
        display: inline-block;
    }
}

@media(max-width: 478px) {
    #cart .dropdown-menu {
        min-width: 100%;
    }

    #cart .dropdown-menu li > div {
        min-width: 100%;
    }
}

#cart .dropdown-menu table {
    margin-bottom: 10px;
}

#cart .dropdown-menu li > div {
    min-width: 427px;
    padding: 0 10px;
}

#cart .dropdown-menu li p {
    margin: 20px 0;
}

/*----------------------------------------*/
/*  NAVIGATION WRAPPER VERTICAL ALIGNMENT
/*----------------------------------------*/
.nav-wrapper {
    display: flex;
    align-items: center;
    min-height: 50px;
    width: 100%;
    background: #c49a43;
}

.nav-wrapper .container {
    flex-grow: 1;
}

/*----------------------------------------*/
/*  MAIN NAVBAR CONTAINER + BASIC STYLES
/*----------------------------------------*/
#menu.navbar {
    margin-bottom: 0 !important;
}

#menu .navbar-collapse {
    padding: 0;
}

/*----------------------------------------*/
/*  DESKTOP FLEX ALIGNMENT FOR NAV CONTENT
/*----------------------------------------*/
@media(min-width: 768px) {
    #menu.navbar {
        display: flex;
        align-items: center;
    }

    #menu .navbar-header,
    #menu .navbar-collapse {
        display: flex;
        align-items: center;
    }

    #menu .navbar-collapse {
        flex-grow: 1;
    }
}

/*----------------------------------------*/
/*  MOBILE RESET (REVERT FLEX TO BLOCK)
/*----------------------------------------*/
@media(max-width: 767px) {
    #menu.navbar,
    #menu .navbar-header,
    #menu .navbar-collapse {
        display: block;
    }

    #menu .navbar-collapse {
        padding: 10px 0;
    }

    #menu .nav > li > a {
        padding: 12px 15px;
        font-size: 16px;
    }
}

/*----------------------------------------*/
/*  NAVBAR LINK STYLES
/*----------------------------------------*/
#menu .nav > li > a {
    color: #fff;
    padding: 10px 15px 10px 15px;
    min-height: 15px;
    background-color: transparent;
    font-size: 16px;
}

/* Active/open states */
#menu .nav > li:hover > a, #menu .nav > li.open > a {
    color: #ccc;
}

/*----------------------------------------*/
/*  DROPDOWN INNER CONTAINER
/*----------------------------------------*/
#menu .dropdown-menu {
    padding-bottom: 0;
}

#menu .dropdown-inner {
    display: table;
}

#menu .dropdown-inner ul {
    display: table-cell;
}

/* Dropdown inner links */
#menu .dropdown-inner a {
    min-width: 175px;
    display: block;
    padding: 4px 20px;
    clear: both;
    line-height: 20px;
    color: #333333;
    font-size: 12px;
}

#menu .dropdown-inner li a:hover {
    color: #007acc;
}

/* "See all" category link at bottom of dropdown */
#menu .see-all {
    display: block;
    margin-top: 0.5em;
    border-top: 1px solid #ddd;
    padding: 3px 20px;
    border-radius: 0 0 3px 3px;
    font-size: 12px;
}

#menu .see-all:hover, #menu .see-all:focus {
    text-decoration: none;
    color: #ffffff;
    background-color: #007acc;
}

/* Category label on left */
#menu #category {
    float: left;
    font-size: 16px;
    line-height: 40px;
    color: #000;
    margin-left: 15px;
}

/* Navbar toggler for mobile */
#menu .btn-navbar {
    font-size: 15px;
    font-stretch: expanded;
    color: #fff;
    padding: 2px 18px;
    float: right;
    background-color: #007acc;
}

#menu .btn-navbar:hover,
#menu .btn-navbar:focus,
#menu .btn-navbar:active,
#menu .btn-navbar.disabled,
#menu .btn-navbar[disabled] {
    color: #ffffff;
    background-color: #000;
}

/*----------------------------------------*/
/*  RESPONSIVE DROPDOWN ON HOVER (DESKTOP)
/*----------------------------------------*/
@media(min-width: 768px) {
    #menu .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/*----------------------------------------*/
/*  MOBILE DROPDOWN ADJUSTMENTS
/*----------------------------------------*/
@media(max-width: 767px) {
    #menu .navbar-nav {
        margin: 0;
    }

    #menu .in {
        border-top: 1px dotted #bbb;
    }

    #menu {
        border-radius: 4px;
    }

    #menu div.dropdown-inner > ul.list-unstyled {
        display: block;
    }

    #menu div.dropdown-menu {
        margin-left: 0 !important;
        padding-bottom: 10px;
        background-color: #fff;
    }

    #menu .dropdown-inner {
        display: block;
    }

    #menu .dropdown-inner a {
        width: 100%;
        color: #222;
    }

    #menu .dropdown-menu a:hover, #menu .dropdown-menu ul li a:hover {
        background-color: #eee;
    }

    #menu .see-all {
        margin-top: 0;
        border: none;
        border-radius: 0;
        color: #222;
    }

    #menu .see-all:hover {
        color: #007acc;
    }
}

/*----------------------------------------*/
/*  STYLED DROPDOWN TO MATCH MAIN NAV
/*----------------------------------------*/
#menu .dropdown-menu {
    background-color: #c49a43;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

#menu .dropdown-inner a {
    background-color: #c49a43;
    color: #fff;
    padding: 8px 20px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease;
}

#menu .dropdown-inner a:hover {
    background-color: #022a04;
    color: #fff!important;
}

/* Optional: highlight the last item (e.g. 'see all') */
#menu .see-all {
    background-color: #333;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

#menu .see-all:hover {
    background-color: #000;
    color: #fff;
}

/*----------------------------------------*/
/*  SEARCH ICON STYLING
/*----------------------------------------*/
#search .fa {
    color: #c49a43;
}


/*----------------------------------------*/
/*  FOOTER STYLES
/*----------------------------------------*/
footer {
    margin-top: 30px;
    padding-top: 15px;
    background-color: #222;
    color: #999;
}

footer hr {
    border-top: none;
    border-bottom: 1px solid #444;
}

footer a {
    color: #ccc;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

footer h5 {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #fff;
    margin-bottom: 15px;
}

footer li {
    margin: 4px 0;
}

footer li a {
    position: relative;
    padding-left: 12px;
    color: #999;
}

footer li a:after {
    font-family: "FontAwesome";
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-decoration: none;
    font-size: 14px;
    left: 0;
    text-indent: 0;
    text-align: center;
    content: '>';
    position: absolute;
}

footer li a:hover {
    color: #fff;
    text-decoration: underline;
}

/*----------------------------------------*/
/*  ALERTS
/*----------------------------------------*/
.alert {
    padding: 8px 14px;
}

/*----------------------------------------*/
/*  GLOBAL BREADCRUMB STYLING (ALL PAGES)
/*----------------------------------------*/

.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 20px;
    font-size: 13px;
    border-radius: 0;
}

.breadcrumb > li {
    display: inline-block;
    color: #666;
}

.breadcrumb > li + li:before {
    content: ">";
    padding: 0 6px;
    color: #999;
}

.breadcrumb > li a {
    color: #007acc;
    text-decoration: none;
}

.breadcrumb > li a:hover {
    text-decoration: underline;
}

.pagination {
    margin: 0;
}

/*----------------------------------------*/
/*  BUTTONS + BUTTON GROUPS
/*----------------------------------------*/
.buttons {
    margin: 1em 0;
}

.btn {
    padding: 7px 16px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
}

.btn-xs {
    font-size: 9px;
}

.btn-sm {
    font-size: 10.2px;
}

.btn-lg {
    padding: 10px 16px;
    font-size: 15px;
}

/* Grouped buttons and dropdown menus */
.btn-group > .btn, .btn-group > .dropdown-menu, .btn-group > .popover {
    font-size: 12px;
}

.btn-group > .btn-xs {
    font-size: 9px;
}

.btn-group > .btn-sm {
    font-size: 10.2px;
}

.btn-group > .btn-lg {
    font-size: 15px;
}

/*----------------------------------------*/
/*  BUTTON VARIANTS
/*----------------------------------------*/
.btn-default {
    color: #777;
    background-color: #e7e7e7;
}

.btn-primary {
    color: #ffffff;
    background-color: #007acc;
}

.btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {
    background-color: #222;
}

.btn-warning {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #faa732;
    background-image: linear-gradient(to bottom, #fbb450, #f89406);
    background-repeat: repeat-x;
    border-color: #f89406 #f89406 #ad6704;
}

.btn-warning:hover, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled] {
    box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}

.btn-danger {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #da4f49;
}

.btn-danger:hover, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled] {
    box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}

.btn-success {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #5bb75b;
}

.btn-success:hover, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] {
    box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}

.btn-info {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #df5c39;
}

.btn-info:hover, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] {
    background-image: none;
    background-color: #df5c39;
}

/*----------------------------------------*/
/*  LINK + INVERSE BUTTONS
/*----------------------------------------*/
.btn-link {
    border-color: transparent;
    cursor: pointer;
    color: #23a1d1;
    border-radius: 0;
}

.btn-link, .btn-link:active, .btn-link[disabled] {
    background-color: transparent;
    background-image: none;
    box-shadow: none;
}

.btn-inverse {
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #363636;
}

.btn-inverse:hover, .btn-inverse:active, .btn-inverse.active, .btn-inverse.disabled, .btn-inverse[disabled] {
    background-color: #222222;
}

/*----------------------------------------*/
/*  LIST GROUP STYLING
/*----------------------------------------*/
.list-group a {
    border: 1px solid #dddddd;
    color: #888888;
    padding: 8px 12px;
}

.list-group a.active,
.list-group a.active:hover,
.list-group a:hover {
    color: #007acc;
    background: #eeeeee;
    border: 1px solid #dddddd;
}

/*----------------------------------------*/
/*  CAROUSEL NAV + CAPTIONS
/*----------------------------------------*/
.carousel-caption {
    color: #ffffff;
    text-shadow: 0 1px 0 #000000;
}

.carousel-control .icon-prev:before {
    content: '\f053';
    font-family: FontAwesome;
}

.carousel-control .icon-next:before {
    content: '\f054';
    font-family: FontAwesome;
}

/*----------------------------------------*/
/*  CATEGORY PAGE LAYOUT + STRUCTURE
/*----------------------------------------*/
#product-category,  #product-product, #checkout-cart, #information-information, #information-contact {
    padding-top: 20px;
    padding-bottom: 40px;
}

/*----------------------------------------*/
/*  SIDEBAR LIST GROUP MENU
/*----------------------------------------*/
#column-left .list-group {
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}

#column-left .list-group-item {
    font-size: 14px;
    padding: 10px 15px;
    border: none;
    border-bottom: 1px solid #eee;
    color: #333;
    background-color: #fff;
    transition: background 0.3s ease;
}

#column-left .list-group-item:last-child {
    border-bottom: none;
}

#column-left .list-group-item.active {
    background-color: #c49a43;
    color: #fff;
    font-weight: bold;
}

#column-left .list-group-item:hover {
    background-color: #f5f5f5;
}

/*----------------------------------------*/
/*  PRODUCT LISTING GRID
/*----------------------------------------*/
.product-thumb {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    background: #fff;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease;
    height: 100%;
}

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

.product-thumb .image {
    text-align: center;
    margin-bottom: 10px;
}

.product-thumb .image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.product-thumb .caption h4 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 10px;
    min-height: 48px;
}

.product-thumb .caption p {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    height: 40px;
    overflow: hidden;
}

.product-thumb .price {
    font-size: 16px;
    color: #c49a43;
    font-weight: bold;
    margin-bottom: 10px;
}

/*----------------------------------------*/
/*  PRODUCT RATINGS
/*----------------------------------------*/
.product-thumb .rating {
    padding-bottom: 10px;
}

.rating .fa-stack {
    font-size: 8px;
}

.rating .fa-star-o {
    color: #999;
    font-size: 15px;
}

.rating .fa-star {
    color: #fc0;
    font-size: 15px;
}

.rating .fa-star + .fa-star-o {
    color: #e69500;
}

/*----------------------------------------*/
/*  PRODUCT PRICING STYLES
/*----------------------------------------*/
.product-thumb .price-new {
    font-weight: 600;
}

.product-thumb .price-old {
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.product-thumb .price-tax {
    color: #999;
    font-size: 12px;
    display: block;
}

/*----------------------------------------*/
/*  PRODUCT BUTTON GROUP
/*----------------------------------------*/
.product-thumb .button-group {
    display: flex;
    gap: 5px;
    justify-content: space-between;
    background-color: #eee;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.product-thumb:hover .button-group {
    opacity: 1;
    visibility: visible;
}

.product-list .product-thumb .button-group {
    visibility: visible;
    opacity: 1;
}

.product-thumb .button-group button {
    flex: 1;
    font-size: 13px;
    border: none;
    background-color: #f8f8f8;
    color: #333;
    padding: 6px;
    border-radius: 4px;
    transition: background 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.2;
}

.product-thumb .button-group button:hover {
    background-color: #c49a43;
    color: #fff;
    cursor: pointer;
}

/*----------------------------------------*/
/*  MOBILE PRODUCT BUTTONS
/*  Always visible, horizontally aligned
/*----------------------------------------*/
@media(max-width: 767px) {
    .product-thumb .button-group {
        display: flex !important;
        justify-content: center;
        align-items: center;
        opacity: 1 !important;
        visibility: visible !important;
        padding-top: 10px;
        gap: 10px;
        flex-wrap: wrap;
    }

    .product-thumb .button-group button {
        flex: 0 0 auto;
        margin: 0;
        padding: 6px 12px;
        font-size: 14px;
    }

    .product-thumb .caption h4 {
        min-height: auto;
    }

    .product-thumb .caption p {
        height: auto;
    }
}

/*----------------------------------------*/
/*  TOOLBAR (SORT / SHOW)
/*----------------------------------------*/
#content .form-group label.input-group-addon {
    background: #eee;
    border: 1px solid #ccc;
    border-right: none;
    font-weight: normal;
    color: #333;
}

#content .form-group .form-control {
    border-left: none;
}

/*----------------------------------------*/
/*  BREADCRUMB STYLING (UNIFIED)
/*----------------------------------------*/
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
    font-size: 13px;
    border-radius: 0;
}

.breadcrumb > li {
    display: inline-block;
    color: #777;
}

.breadcrumb > li + li:before {
    content: ">";
    padding: 0 8px;
    color: #aaa;
}

/*----------------------------------------*/
/*  PRODUCT IMAGE THUMBNAILS
/*----------------------------------------*/
.thumbnails {
    overflow: auto;
    clear: both;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: -20px;
}

.thumbnails > li {
    margin-left: 20px;
}

.thumbnails > img {
    width: 100%;
}

.image-additional a {
    margin-bottom: 20px;
    padding: 5px;
    display: block;
    border: 1px solid #ddd;
}

.image-additional {
    max-width: 78px;
}

.thumbnails .image-additional {
    float: left;
    margin-left: 20px;
}

/*----------------------------------------*/
/*  CLEARFIXES FOR RESPONSIVE PRODUCT GRIDS
/*----------------------------------------*/
@media(min-width: 1200px) {
    #content .col-lg-2:nth-child(6n+1),
    #content .col-lg-3:nth-child(4n+1),
    #content .col-lg-4:nth-child(3n+1),
    #content .col-lg-6:nth-child(2n+1) {
        clear: left;
    }
}

@media(min-width: 992px) and (max-width: 1199px) {
    #content .col-md-2:nth-child(6n+1),
    #content .col-md-3:nth-child(4n+1),
    #content .col-md-4:nth-child(3n+1),
    #content .col-md-6:nth-child(2n+1) {
        clear: left;
    }
}

@media(min-width: 768px) and (max-width: 991px) {
    #content .col-sm-2:nth-child(6n+1),
    #content .col-sm-3:nth-child(4n+1),
    #content .col-sm-4:nth-child(3n+1),
    #content .col-sm-6:nth-child(2n+1) {
        clear: left;
    }
}

/*----------------------------------------*/
/*  FIXED COLUMN GRID LOGIC
/*  Used for layouts with left and right columns
/*----------------------------------------*/
@media(min-width: 768px) {
    /* Left column product layout takes full width */
    #column-left .product-layout .col-md-3 {
        width: 100%;
    }

    /* If left column and content present, each product gets 50% */
    #column-left + #content .product-layout .col-md-3 {
        width: 50%;
    }

    /* If left, content, and right column present, set full width again */
    #column-left + #content + #column-right .product-layout .col-md-3 {
        width: 100%;
    }

    /* Content + right column only */
    #content + #column-right .product-layout .col-md-3 {
        width: 100%;
    }
}

/*----------------------------------------*/
/*  PAGE SECTIONS: WELL HEADINGS
/*----------------------------------------*/
.well > h2 {
    margin-top: 0px;
}

/*----------------------------------------*/
/*  LEFT & RIGHT COLUMN PRODUCT WRAPPERS
/*----------------------------------------*/
#column-left .product-layout,
#column-right .product-layout {
    width: 100%;
}

/*----------------------------------------*/
/*  FIXED CART QUANTITY INPUT WIDTH ON MOBILE
/*----------------------------------------*/
.input-group .form-control[name^=quantity] {
    min-width: 50px;
}

/*----------------------------------------*/
/*  BUTTON FIXES FOR .btn-info (e.g. missing hover/focus colours)
/*----------------------------------------*/
.btn-info:hover,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
    background-image: none;
    background-color: #df5c39;
}

/*----------------------------------------*/
/*  DESKTOP HEADER SEARCH/CART SPACING
/*----------------------------------------*/
@media(min-width: 768px) {
    #search {
        margin-top: 20px;
    }

    header #cart {
        margin-top: 15px;
    }
}

/*----------------------------------------*/
/*  CUSTOM CSS BY KYLE
/*----------------------------------------*/

/* Section padding used for consistent spacing across pages */
section {
    padding: 5rem 0;
}

/* Light background modifier class */
.bg-light {
    background: #eeeeee;
}

/*----------------------------------------*/
/*  REVIEWS SECTION STYLING
/*  Adds background image and spacing
/*----------------------------------------*/
section#reviews {
    background: url(../../../../../image/catalog/homepage/reviews.jpg) no-repeat center;
    background-size: cover;
    padding: 5rem 0;
}

/* First span in first row of reviews gets white colour and text shadow */
#reviews .row:first-of-type span:first-of-type {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    display: block;
    margin-bottom: 1rem;
    text-align: center;
}

/*----------------------------------------*/
/*  HOMEPAGE MAIN BANNER
/*----------------------------------------*/
.banner-container {
    position: relative;
    overflow: hidden;
}

/* Ensure banner images span full width */
.banner-image {
    width: 100%;
    display: block;
}

/* Banner overlay to darken image and vertically center content */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: table;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* optional overlay tint */
    overflow: hidden;
}

.banner-overlay > div {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 20px;
}

/* Banner heading is white */
.banner-overlay h1 {
    color: #fff;
}

/*----------------------------------------*/
/*  HOMEPAGE IMAGE BOX GRID
/*----------------------------------------*/
.image-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.image-box a {
    display: block;
    text-decoration: none;
    color: white;
    position: relative;
}

/* Image box title sits in bottom left of each box */
.image-box-title {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 10, 0.8);
    z-index: 1;
}

/*----------------------------------------*/
/*  IMAGE BOX HOVER EFFECT
/*  Subtle zoom with scale and fade overlay
/*----------------------------------------*/
.image-box {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.image-box:hover {
    transform: scale(1.03); /* Slight zoom on hover */
}

.image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.image-box:hover img {
    opacity: 0.9;
}

/* Optional: fade in title slightly stronger on hover */
.image-box-title {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 10, 0.8);
    z-index: 1;
    transition: opacity 0.3s ease;
    opacity: 0.9;
}

.image-box:hover .image-box-title {
    opacity: 1;
}

/*----------------------------------------*/
/*  SUPPLIERS SWIPER CAROUSEL
/*----------------------------------------*/
.swiper-viewport{
	margin:0!important;
	padding:5rem 0;
}

/* Hide ugly dots on swiper */
.swiper-pagination{
	display:none;
}

/* Center logos in div */
.carousel-inner>.item>a>img, .carousel-inner>.item>img, .img-responsive, .thumbnail a>img, .thumbnail>img{
	margin:auto;
}

/*----------------------------------------*/
/*  RESPONSIVE SECTION SPACING
/*----------------------------------------*/
@media(min-width: 768px) {
    section {
        padding: 5rem 0;
    }
}

/*----------------------------------------*/
/*  PRODUCT PAGE STYLING
/*----------------------------------------*/

/* Breadcrumb Consistency */
#product-product .breadcrumb {
    margin-bottom: 20px;
    font-size: 13px;
    background: none;
    padding: 0;
}

/* Left Column - Gallery */
#product-product .thumbnails {
    list-style: none;
    padding: 0;
}

#product-product .thumbnail img {
    border-radius: 4px;
    transition: transform 0.3s ease;
}

#product-product .thumbnail:hover img {
    transform: scale(1.05);
}

/* Tabs */
#product-product .nav-tabs {
    margin-top: 20px;
    border-bottom: 2px solid #eee;
}

#product-product .nav-tabs > li > a {
    color: #333;
    padding: 10px 20px;
    border-radius: 4px 4px 0 0;
    transition: background 0.3s ease;
}

#product-product .nav-tabs > li.active > a,
#product-product .nav-tabs > li > a:hover {
    background: #f8f8f8;
    border-color: #ddd #ddd transparent;
}

/* Tab Content */
#product-product .tab-content {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    font-size: 14px;
    line-height: 1.6;
}

/* Right Column - Summary */
#product-product h1 {
    font-size: 22px;
    margin-bottom: 10px;
}

#product-product .list-unstyled li {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Price Display */
#product-product h2 {
    font-size: 24px;
    color: #c49a43;
    margin: 15px 0 5px;
}

/* Add to Cart */
#product-product .form-group label {
    font-weight: 600;
}

#product-product #input-quantity {
    width: 80px;
    display: inline-block;
    margin-right: 10px;
}

#product-product #button-cart {
    margin-top: 10px;
    font-size: 16px;
    background-color: #c49a43;
    border: none;
    padding: 10px 20px;
    text-transform: uppercase;
}

#product-product #button-cart:hover {
    background-color: #a57d31;
}

/* Rating */
#product-product .rating .fa-star-o,
#product-product .rating .fa-star {
    color: #fc0;
    font-size: 15px;
}

#product-product .rating a {
    font-size: 13px;
    color: #555;
}

/* Responsive */
@media(max-width: 767px) {
    #product-product .col-sm-8,
    #product-product .col-sm-4 {
        width: 100%;
    }

    #product-product #input-quantity {
        width: 100%;
        margin-bottom: 10px;
    }

    #product-product #button-cart {
        width: 100%;
    }
}

/*----------------------------------------*/
/*  CHECKOUT CART PAGE
/*----------------------------------------*/

#checkout-cart h1,  #checkout-cart h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

#checkout-cart .table {
    border: 1px solid #ddd;
    background: #fff;
}

#checkout-cart .table th,
#checkout-cart .table td {
    vertical-align: middle;
    border-color: #eee;
    font-size: 16px;
}

#checkout-cart .table th {
    background-color: #f5f5f5;
    color: #333;
}

#checkout-cart .table td.text-left a {
    color: #007acc;
    font-weight: bold;
}

#checkout-cart .table td.text-left a:hover {
    color: #c49a43;
}

#checkout-cart .img-thumbnail {
    border: none;
    border-radius: 4px;
    max-width: 50px;
}

/* Quantity buttons */
#checkout-cart .input-group .btn {
    padding: 6px 10px;
}

#checkout-cart .input-group .btn-primary {
    background-color: #007acc;
    color: #fff;
    border: none;
}

#checkout-cart .input-group .btn-primary:hover {
    background-color: #c49a43;
}

#checkout-cart .input-group .btn-danger {
    background-color: #dc3545;
    color: #fff;
}

#checkout-cart .input-group .btn-danger:hover {
    background-color: #a71d2a;
}

/* Cart totals */
#checkout-cart .col-sm-4.col-sm-offset-8 .table {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
}

#checkout-cart .col-sm-4.col-sm-offset-8 td {
    font-weight: bold;
}

/* Panel accordions (coupon, voucher etc) */
#checkout-cart .panel-title a {
    display: block;
    padding: 10px 15px;
    background: #f8f8f8;
    color: #333;
    font-size: 16px;
    border: 1px solid #ddd;
    border-bottom: none;
    position: relative;
}

#checkout-cart .panel-title a:hover {
    background: #eee;
}

#checkout-cart .panel-body {
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    padding: 20px;
}

/* Coupon / voucher input */
#checkout-cart .input-group input.form-control {
    border-radius: 0;
    border-right: none;
}

#checkout-cart .input-group .btn {
    color: #fff;
    border-radius: 0;
}

#checkout-cart .input-group .btn:hover {
    background-color: #c49a43;
}

/* Buttons */
#checkout-cart .buttons .btn-default,
#checkout-cart .buttons .btn-primary {
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 16px;
    text-transform: uppercase;
}

#checkout-cart .buttons .btn-default {
    background-color: #eee;
    border: 1px solid #ccc;
    color: #333;
}

#checkout-cart .buttons .btn-default:hover {
    background-color: #ddd;
}

#checkout-cart .buttons .btn-primary {
    background-color: #c49a43;
    border: none;
    color: #fff;
}

#checkout-cart .buttons .btn-primary:hover {
    background-color: #a67c2b;
}

/* Alert messages */
#checkout-cart .alert {
    border-radius: 0;
    font-size: 16px;
}

/*----------------------------------------*/
/*  FAQ Accordion Section - Bootstrap 3
/*  Targets #faqs
/*----------------------------------------*/
#faqs .panel-group {
    margin-top: 20px;
    margin-bottom: 40px;
}

/* Panel styling */
#faqs .panel {
    border-radius: 0;
    border: 1px solid #ccc;
    box-shadow: none;
}

/* Panel heading with branded colour */
#faqs .panel-heading {
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
    padding: 12px 15px;
}

#faqs .panel-heading h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

/* Font Awesome icon spacing */
#faqs .panel-title i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

/* Panel title links */
#faqs .panel-title a {
    display: block;
    color: #333;
    text-decoration: none;
}

#faqs .panel-title a:hover,
#faqs .panel-title a:focus {
    color: #007acc;
}

/* Panel body text */
#faqs .panel-body {
    background: #fff;
    padding: 15px;
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px solid #ddd;
}

/* Responsive tweak */
@media(max-width: 767px) {
    #checkout-cart .table-responsive {
        border: none;
    }

    #checkout-cart h1 {
        font-size: 22px;
    }

    #checkout-cart .btn {
        font-size: 13px;
    }
}






