/**
 * New Demolition Traders Style
 * Based on original website design
 */

:root {
    --primary-color: #2f3192;
    --secondary-color: #ffca0d;
    --dark-color: #333;
    --light-bg: #f6f6f6;
    --text-color: #000;
    --text-light: #918f8f;
    --border-color: #ddd;
    --font-main: 'Rubik', Arial, Helvetica, sans-serif;
}

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

body {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: #000;
}

.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Yellow Top Bar */
.header-top {
    background: var(--secondary-color);
    padding: 8px 0;
}

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

.header-top-left {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}

.header-top-left a {
    color: var(--text-color);
}

.header-top-left a:hover {
    color: var(--primary-color);
}

.header-top-left .fab {
    font-size: 22px;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
}

.header-top-right a {
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-top-right a i {
    font-size: 16px;
}

.header-top-right a:hover {
    color: var(--primary-color);
}

/* Main Header */
.site-header {
    background: white;
    padding: 25px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.site-header .container {
    max-width: 1250px;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-top-row {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 100px;
}

.header-center {
    flex: 1;
}

/* Search Bar */
.header-search {
    position: relative;
    margin-bottom: 8px;
}

.header-search form {
    display: flex;
    border: 2px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background: white;
}

.search-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    font-size: 15px;
    outline: none;
}

.search-button {
    padding: 14px 25px;
    background: var(--secondary-color);
    color: var(--text-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.search-button:hover {
    background: #e6b60c;
}

.tagline {
    text-align: center;
    color: var(--primary-color);
    font-size: 14px;
    font-style: italic;
}

/* Header Info Boxes */
.header-info {
    display: flex;
    gap: 8px;
    flex-direction: row;
    align-items: center;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: var(--text-color);
    transition: all 0.3s;
    background: white;
    white-space: nowrap;
    font-size: 12px;
    flex-shrink: 0;
}

.info-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.info-box i {
    font-size: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-box div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    gap: 2px;
}

.info-box strong {
    font-size: 11px;
    font-weight: 600;
}

.info-box span {
    font-size: 11px;
    color: var(--primary-color);
    font-weight: 500;
}

#location-btn {
    cursor: pointer;
    background: white;
}

.info-box strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
}

.info-box span {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}

/* Opening Hours Modal */
.opening-hours-box {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.dropdown-icon {
    font-size: 14px;
    color: var(--primary-color);
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.opening-hours-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.opening-hours-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.opening-hours-dropdown {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(47, 49, 146, 0.25);
    width: 90%;
    max-width: 400px;
    z-index: 10001;
    overflow: hidden;
    transform: scale(0.9) translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.opening-hours-modal.active .opening-hours-dropdown {
    transform: scale(1) translateY(0);
}

.dropdown-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1f2182 100%);
    padding: 16px 20px;
    border-bottom: 3px solid var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-header h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: white;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.opening-hours-list {
    padding: 10px;
    max-height: 70vh;
    overflow-y: auto;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 16px;
    margin: 4px 0;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    position: relative;
}

.hours-item:hover {
    background: #e8e8f5;
    transform: translateX(6px);
    box-shadow: 0 3px 10px rgba(47, 49, 146, 0.1);
}

.hours-item.today {
    background: linear-gradient(135deg, #2f3192 0%, #1f2182 100%);
    box-shadow: 0 6px 20px rgba(47, 49, 146, 0.3);
    transform: scale(1.02);
}

.hours-item.today::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: var(--secondary-color);
    border-radius: 10px 0 0 10px;
}

.hours-item.today .day-name,
.hours-item.today .day-hours {
    color: white;
    font-weight: 600;
}

.day-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-color);
    min-width: 130px;
    display: flex;
    align-items: center;
}

.hours-item.today .day-name::after {
    content: '●';
    color: var(--secondary-color);
    font-size: 12px;
    margin-left: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* Location Map Modal */
.location-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.location-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.modal-backdrop-location {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
}

.location-map-container {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(47, 49, 146, 0.25);
    width: 90%;
    max-width: 600px;
    z-index: 10001;
    overflow: hidden;
    transform: scale(0.9) translateY(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-modal.active .location-map-container {
    transform: scale(1) translateY(0);
}

.location-map-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1f2182 100%);
    padding: 16px 20px;
    border-bottom: 3px solid var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.location-map-header h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: white;
}

.location-map-content {
    padding: 20px;
}

.location-map-content iframe {
    border-radius: 8px;
    margin-bottom: 15px;
}

.location-details {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.location-details p {
    margin: 5px 0;
    font-size: 14px;
    color: var(--text-color);
}

.location-details p strong {
    font-weight: 600;
    color: var(--primary-color);
}

.location-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.location-details a:hover {
    text-decoration: underline;
}

.btn-google-maps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1f2182 100%);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    width: 100%;
    cursor: pointer;
    font-size: 14px;
}

.btn-google-maps span {
    color: white;
    font-weight: 500;
}

.btn-google-maps:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(47, 49, 146, 0.3);
}

.btn-google-maps i {
    font-size: 18px;
    color: #ffca0d;
}

.day-hours {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 600;
    text-align: right;
}

.loading {
    padding: 30px;
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary-color);
    cursor: pointer;
}

/* Mobile menu bar - hidden on desktop */
.mobile-menu-bar {
    display: none;
}

.mobile-nav-dropdown {
    position: relative !important;
    background: white !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    display: block !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    background: #f8f9fa;
    position: sticky;
    top: 0;
}

.mobile-nav-header h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation Menu */
.main-nav {
    background: var(--primary-color);
    margin-bottom: 30px;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    color: white;
    padding: 10px 8px;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.3px;
    transition: all 0.3s;
}

.nav-menu > li > a:hover {
    background: #252675;
    color: var(--secondary-color);
}

/* Dropdown Menus */
.has-dropdown > a::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.has-dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    list-style: none;
    padding: 10px 0;
    z-index: 1000;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    margin: 0;
    padding: 0;
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    transition: all 0.3s;
}

.dropdown li a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: #f0f0f0;
}

.hero-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

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

.sound-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(47, 49, 146, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sound-toggle:hover {
    background: rgba(47, 49, 146, 1);
    transform: scale(1.1);
}

.sound-toggle.active {
    background: rgba(255, 202, 13, 0.9);
    color: #2f3192;
}

.sound-toggle.active:hover {
    background: rgba(255, 202, 13, 1);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 60px;
    text-align: center;
    max-width: 900px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content.minimized {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0);
    pointer-events: none;
}

.minimize-toggle {
    position: absolute;
    top: 20px;
    right: 80px;
    width: 50px;
    height: 50px;
    background: rgba(47, 49, 146, 0.9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.minimize-toggle:hover {
    background: rgba(47, 49, 146, 1);
    transform: scale(1.1);
}

.hero-content h1 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 400;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--text-color);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.hero-buttons a {
    display: inline-block;
    padding: 15px 40px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s;
}

.hero-buttons a:first-child {
    background: var(--secondary-color);
    color: var(--text-color);
}

.hero-buttons a:first-child:hover {
    background: #e6b60c;
    transform: translateY(-2px);
}

.hero-buttons a.alt {
    background: var(--primary-color);
    color: white;
}

.hero-buttons a.alt:hover {
    background: #252675;
    transform: translateY(-2px);
}

/* Section Titles */
h3.center {
    text-align: center;
    font-size: 22px;
    text-transform: uppercase;
    padding: 50px 0 10px;
    position: relative;
}

h3.center span {
    position: relative;
    display: inline-block;
    padding: 0 15px;
    background: white;
}

h3.center span:before,
h3.center span:after {
    content: '';
    position: absolute;
    top: 50%;
    display: block;
    width: 50px;
    height: 1px;
    background: #231f20;
}

h3.center span:before {
    right: 100%;
}

h3.center span:after {
    left: 100%;
}

h3.blue {
    color: var(--primary-color);
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

p.small.center {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 30px;
}

/* Featured Products Section */
.featured-products {
    padding: 40px 0;
    background: white;
}

.products-carousel {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 0 0 40px;
}

.product-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    opacity: 0;
    transition: all 0.3s;
}

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

.product-actions a {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
}

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-badges .badge {
    position: static;
    margin: 0;
    display: inline-block;
}

.badge-new {
    background: var(--secondary-color);
    color: var(--text-color);
}

.badge-recycled {
    background: #4caf50;
    color: white;
}

.badge-out-of-stock {
    background: #dc3545;
    color: #fff;
}

.product-info {
    padding: 15px;
}

.product-info h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    min-height: 40px;
    line-height: 1.3;
}

.product-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.product-price small {
    font-size: 12px;
    color: var(--text-light);
}

/* Info Boxes Section */
.info-boxes-section {
    padding: 40px 0;
    background: white;
}

.info-boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-box-item {
    text-align: center;
    padding: 20px;
}

.info-box-item h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: none;
    padding: 0;
}

.info-box-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* CTA Panels */
.cta-panels {
    padding: 60px 0;
    background: white;
}

.cta-panels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.cta-panel {
    text-align: center;
}

.cta-panel h3 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cta-panel h2 {
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 0;
}

.cta-panel p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cta-panel .button-wrap {
    margin-bottom: 20px;
}

.cta-panel img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn:hover {
    background: #252675;
    transform: translateY(-2px);
}

/* Popular Ranges */
.popular-ranges {
    padding: 60px 0;
    background: white;
}

.ranges-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.range-card {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    transition: all 0.3s;
}

.range-card:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.range-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.range-title {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 20px;
    width: 100%;
    text-align: center;
}

/* Newsletter Section */
.newsletter-section {
    background: #ffca0d;
    padding: 25px 0;
    text-align: center;
}

.newsletter-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.newsletter-section h3 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    flex: 0 1 auto;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
    padding: 10px 15px;
    border: none;
    font-size: 13px;
    font-family: 'Rubik', Arial, sans-serif;
    width: 220px;
}

.newsletter-form .btn-subscribe {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 35px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'Rubik', Arial, sans-serif;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form .btn-subscribe:hover {
    background: #252675;
}

/* Footer */
.site-footer {
    background: #204659;
    color: white;
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 260px 1fr 1fr 240px;
    gap: 40px;
    align-items: start;
}

.footer-logo-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    max-width: 260px;
    height: auto;
}

.footer-tagline {
    max-width: 260px;
    height: auto;
}

.footer-nav,
.footer-contact,
.footer-location {
    display: flex;
    flex-direction: column;
}

.footer-nav h4,
.footer-contact h4,
.footer-location h4 {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--secondary-color);
}

.footer-contact p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

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

.footer-location {
    text-align: left;
}

.footer-map {
    width: 240px;
    height: 240px;
    margin-bottom: 10px;
    display: block;
}

.footer-location a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-location a:hover {
    color: var(--secondary-color);
}

/* Footer Base */
.footer-base {
    background: #1a3d4d;
    padding: 20px 0;
    text-align: center;
}

.footer-base .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

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

.social-links a {
    color: white;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

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

.footer-base a {
    color: #999;
    text-decoration: none;
}

.footer-base a:hover {
    color: var(--secondary-color);
}

/* ================================================
   RESPONSIVE DESIGN - Original Demolition Traders Template
   Based on template.responsive.css compiled from SCSS
   ================================================ */

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .header-info {
            display: flex !important;
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
            margin-top: 10px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Keep top bar on mobile but stack neatly */
    .header-top {
        display: block;
        padding: 10px 0;
    }
    .header-top .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 0 16px;
    }
    .header-top-left,
    .header-top-right {
        width: 100%;
        flex-wrap: wrap;
        gap: 12px;
        row-gap: 4px;
        font-size: 12px;
        line-height: 1.2;
    }
    /* Hide the HOME label on mobile to declutter */
    .header-top-left a:first-child {
        display: none;
    }
    .header-top-left a {
        padding: 2px 0;
    }
    .header-top-left a,
    .header-top-right a {
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }
    .header-top-right {
        justify-content: flex-start;
    }
    
    html, body {
        overflow-x: visible !important;
        font-size: 14px !important;
    }
    
    /* Mobile font size reductions */
    h1 { font-size: 20px !important; }
    h2 { font-size: 18px !important; }
    h3 { font-size: 16px !important; }
    h4 { font-size: 15px !important; }
    h5 { font-size: 14px !important; }
    h6 { font-size: 13px !important; }
    
    p { font-size: 13px !important; }
    a { font-size: 13px !important; }
    button { font-size: 13px !important; }
    input, textarea, select { font-size: 13px !important; }
    label { font-size: 12px !important; }
    small { font-size: 11px !important; }
    
    /* Mobile header layout */
    .site-header {
        padding: 15px 0 0;
    }
    
    .header-content {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    /* Top row: Logo center, Info below */
    .header-top-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .header-top-row .logo {
        width: 100%;
        text-align: center;
        padding: 0;
    }
    
    .header-top-row .logo img {
        max-height: 55px !important;
        width: auto;
    }
    
    /* Header info - show all 3 on mobile, centered below logo */
    .header-top-row .header-info {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: 100%;
    }
    
    .header-info .info-box {
        display: flex !important;
        font-size: 12px;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 5px 10px;
        gap: 8px;
        background: #f8f8f8;
        border-radius: 4px;
        border: 1px solid #e0e0e0;
    }
    
    .header-info .info-box i {
        font-size: 14px;
        flex-shrink: 0;
        color: var(--primary-color);
    }
    
    .header-info .info-box div {
        display: flex;
        flex-direction: column;
        gap: 0;
        line-height: 1.3;
    }
    
    .header-info .info-box strong {
        font-size: 10px;
        font-weight: 600;
        white-space: nowrap;
    }
    
    .header-info .info-box span {
        font-size: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .header-info .dropdown-icon {
        font-size: 10px;
        margin-left: auto;
    }
    
    /* Search section - full width */
    .header-center {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin-top: 15px;
    }
    
    .header-search {
        width: 100%;
    }
    
    .header-search form {
        width: 100%;
    }
    
    .search-input {
        font-size: 14px;
        padding: 10px 50px 10px 15px;
    }
    
    .search-button {
        width: 45px;
        height: 40px;
    }
    
    .tagline {
        display: none;
    }
    
    /* Mobile menu toggle */
    .mobile-menu-toggle {
        display: none !important;
    }
    
    /* Mobile menu bar - 3 buttons */
    .main-nav {
        order: 4;
        position: relative;
        background: transparent;
        box-shadow: none;
        padding: 0;
        margin-top: 15px;
    }
    
    .main-nav .container {
        padding: 0;
    }
    
    /* Hide desktop menu */
    .nav-menu {
        display: none !important;
    }
    
    /* Show mobile menu bar */
    .mobile-menu-bar {
        display: flex !important;
        background: #2f3192;
        height: 44px;
        align-items: stretch;
    }
    
    .mobile-menu-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        color: #fff;
        font-size: 13px;
        font-weight: 500;
        text-transform: uppercase;
        border: none;
        border-right: 1px solid #5052a4;
        background: transparent;
        cursor: pointer;
        transition: background 0.3s;
        text-decoration: none;
    }
    
    .mobile-menu-btn:last-child {
        border-right: 0;
    }
    
    .mobile-menu-btn:active {
        background: rgba(255,255,255,0.15);
    }
    
    .mobile-menu-btn i {
        font-size: 16px;
    }
    
    .mobile-menu-btn span {
        font-size: 11px;
        display: inline-block;
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    /* Ensure user name is visible when logged in */
    #mobile-login-btn span {
        max-width: none !important;
    }
    
    .mobile-menu-btn-group {
        flex: 1;
        display: flex;
        border-right: 1px solid #5052a4;
    }
    
    .mobile-menu-btn-group .mobile-menu-btn {
        flex: 1;
        border-right: 1px solid #5052a4;
    }
    
    .mobile-menu-btn-group .mobile-menu-btn:last-child {
        border-right: 0;
    }
    
    /* Mobile navigation dropdown - inside fullscreen wrapper */
    .mobile-nav-dropdown {
        position: relative !important;
        background: #fff !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        display: block !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        border-bottom: 1px solid #e0e0e0;
        background: #f8f9fa;
        position: sticky;
        top: 0;
    }
    
    .mobile-nav-header h3 {
        margin: 0;
        font-size: 16px;
        color: #333;
    }
    
    .mobile-nav-close {
        background: none;
        border: none;
        font-size: 24px;
        color: #333;
        cursor: pointer;
        padding: 0;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-nav-content {
        padding: 0;
    }
    
    .mobile-nav-item {
        border-bottom: 1px solid #e0e1e2;
    }
    
    .mobile-nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        color: #333;
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        text-decoration: none;
        background: #fff;
        transition: background 0.2s;
    }
    
    .mobile-nav-link:active {
        background: #f5f5f5;
    }
    
    .mobile-nav-link .toggle-icon {
        font-size: 12px;
        transition: transform 0.3s;
    }
    
    .mobile-nav-item.has-dropdown.open .toggle-icon {
        transform: rotate(-135deg);
    }
    
    .mobile-nav-submenu {
        display: none;
        background: #f9f9f9;
        border-left: 3px solid #2f3192;
    }
    
    .mobile-nav-item.has-dropdown.open .mobile-nav-submenu {
        display: block;
    }
    
    .mobile-nav-submenu a {
        display: block;
        padding: 10px 20px 10px 35px;
        color: #666;
        font-size: 13px;
        text-decoration: none;
        text-transform: none;
        font-weight: 400;
        background: #f9f9f9;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .mobile-nav-submenu a:active {
        background: #f0f0f0;
    }
    
    .mobile-nav-submenu {
        display: none;
        background: #f9f9f9;
    }
    
    .mobile-nav-item.active .mobile-nav-submenu {
        display: block;
    }
    
    .mobile-nav-submenu a {
        display: block;
        padding: 12px 20px 12px 40px;
        color: #555;
        font-size: 13px;
        text-decoration: none;
        border-top: 1px solid #e8e8e8;
        transition: background 0.2s;
    }
    
    .mobile-nav-submenu a:active {
        background: #f0f0f0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .mobile-nav-dropdown.active {
        display: block;
    }
    
    .mobile-nav-dropdown > li {
        border-bottom: 1px solid #e0e1e2;
    }
    
    .mobile-nav-dropdown > li > a {
        display: block;
        padding: 12px 20px;
        color: #333;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 12px;
    }
    
    .mobile-nav-dropdown .dropdown {
        display: none;
        background: #f9f9f9;
    }
    
    .mobile-nav-dropdown .dropdown.active {
        display: block;
    }
    
    .mobile-nav-dropdown .dropdown li {
        border-top: 1px solid #e0e1e2;
        border-bottom: 0;
    }
    
    .mobile-nav-dropdown .dropdown a {
        padding: 10px 20px 10px 40px;
        font-weight: 400;
        text-transform: none;
    }
    
    .mobile-nav-dropdown .has-dropdown > a {
        position: relative;
        padding-right: 40px;
    }
    
    .mobile-nav-dropdown .has-dropdown > a::after {
        content: '+';
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
        font-weight: 400;
        transition: transform 0.2s;
    }
    
    .mobile-nav-dropdown .has-dropdown.open > a::after {
        transform: translateY(-50%) rotate(45deg);
    }
    
    /* User menu and cart/wishlist icons in mobile bar */
    .header-top-right {
        display: flex !important;
        position: absolute;
        right: 0;
        top: 0;
        background: #2f3192;
        height: 40px;
        z-index: 10;
    }
    
    .header-top-right a {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        padding: 0 15px;
        color: #fff;
        font-size: 18px;
        border-left: 1px solid #5052a4;
        transition: background 0.3s;
    }
    
    .header-top-right a:hover {
        background: rgba(255,255,255,0.1);
    }
    
    .header-top-right a i {
        margin-right: 0;
    }
    
    .header-top-right a span {
        font-size: 11px;
        margin-left: 3px;
    }

    /* Keep the yellow bar layout for mobile instead of floating icons */
    .header-top-right {
        display: none !important; /* Hide login/logout/wishlist/cart in top bar on mobile (already in bottom bar) */
    }
    
    /* Footer responsive */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-section {
        width: 100% !important;
        margin-bottom: 30px;
    }
    
    .footer-logo img {
        max-width: 200px !important;
        margin: 0 auto;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    /* Even smaller fonts for tiny screens */
    html, body {
        font-size: 12px !important;
    }
    
    h1 { font-size: 18px !important; }
    h2 { font-size: 16px !important; }
    h3 { font-size: 14px !important; }
    h4 { font-size: 13px !important; }
    h5 { font-size: 12px !important; }
    h6 { font-size: 11px !important; }
    
    p { font-size: 12px !important; }
    a { font-size: 12px !important; }
    button { font-size: 12px !important; }
    input, textarea, select { font-size: 12px !important; }
    label { font-size: 11px !important; }
    small { font-size: 10px !important; }
    
    .nav-menu.active {
        display: flex;
        left: 0;
    }
    
    body.menu-open {
        overflow: hidden !important;
    }
    .nav-menu > li > a {
        font-size: 17px;
        padding: 16px 24px;
        border-bottom: 1px solid #252675;
    }
    
    .nav-menu > li.has-dropdown > a {
        position: relative;
    }
    
    .nav-menu > li.has-dropdown > a::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 24px;
        transition: transform 0.3s ease;
    }
    
    .nav-menu > li.has-dropdown.open > a::after {
        transform: rotate(180deg);
    }
    
    .nav-menu > li > ul.dropdown {
        position: static;
        display: none;
        background: #23246a;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }
    
    .nav-menu > li.open > ul.dropdown {
        display: block;
    }
    
    .nav-menu > li > ul.dropdown > li > a {
        font-size: 15px;
        padding: 12px 32px;
    }
    .header-info {
        width: 100%;
        order: 2;
        margin-top: 15px;
        margin-bottom: 10px;
    }
    
    .header-info .info-box {
        font-size: 11px;
        padding: 8px 0;
        width: 100%;
    }
    
    .header-info .info-box i {
        font-size: 16px;
    }
    
    .header-info .info-box strong {
        font-size: 12px;
    }
    
    .header-info .info-box span {
        font-size: 11px;
    }
    
    .opening-hours-box {
        cursor: pointer;
    }
    .hero-banner,
    .hero-content,
    .sound-toggle,
    .minimize-toggle {
        display: none !important;
    }
    .container {
        max-width: 100vw !important;
        width: 100vw !important;
        padding: 0 8px !important;
        box-sizing: border-box;
    }
    .site-footer {
        padding: 30px 0 20px 0 !important;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
    .footer-logo-column, .footer-nav, .footer-contact, .footer-location {
        align-items: center !important;
        text-align: center !important;
    }
    
    .footer-logo-column {
        margin-bottom: 20px;
    }
    
    .footer-logo,
    .footer-tagline {
        max-width: 180px !important;
        margin: 0 auto;
    }
    
    .footer-base .container {
        flex-direction: column !important;
        gap: 10px !important;
        text-align: center;
    }
}

.content-section h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-section ul {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.lead {
    font-size: 20px;
    color: #555;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.content-main {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-box {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-box h3 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

/* Contact Form */
.contact-form {
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Rubik', Arial, sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.form-group input[type="checkbox"] {
    margin-right: 8px;
}

/* Address verification helper */
.address-verify {
    border: 1px dashed #d5d5d5;
    border-radius: 8px;
    padding: 12px;
    background: #fafafa;
    margin-bottom: 14px;
}

.address-verify .verify-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2f3192;
}

.address-verify .lookup-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.address-verify .lookup-row.combined input[type="text"] {
    flex: 1;
}

.address-verify .btn-hidden {
    display: none;
}

.address-verify input[type="text"] {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.address-verify .link-btn {
    background: none;
    border: none;
    color: #2f3192;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.address-helper-text {
    font-size: 12px;
    color: #777;
    margin: 6px 0;
}

.address-status {
    font-size: 12px;
    margin-bottom: 6px;
}

.address-status.success { color: #198754; }
.address-status.info { color: #0d6efd; }
.address-status.warning { color: #d98c00; }
.address-status.error { color: #c0392b; }
.address-status.muted { color: #777; }

.address-suggestions {
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    max-height: 220px;
    overflow-y: auto;
}

.address-suggestion {
    width: 100%;
    text-align: left;
    padding: 10px 12px;
    border: none;
    background: transparent;
    border-bottom: 1px solid #f1f1f1;
    cursor: pointer;
}

.address-suggestion:last-child {
    border-bottom: none;
}

.address-suggestion:hover {
    background: #f4f6ff;
}

.address-suggestion .address-main {
    display: block;
    font-size: 13px;
    color: #222;
    margin-bottom: 3px;
}

.address-suggestion .address-meta {
    font-size: 12px;
    color: #666;
}

/* Info Boxes */
.info-box-yellow {
    background: #fffbea;
    border-left: 4px solid var(--secondary-color);
    padding: 20px;
    margin: 25px 0;
}

.info-box-yellow h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Icon Grid */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.icon-box {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.icon-box i {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.icon-box h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.icon-box p {
    font-size: 14px;
    color: #666;
}

/* Numbered List */
.numbered-list {
    counter-reset: item;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.numbered-list li {
    counter-increment: item;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
}

.numbered-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--secondary-color);
    color: var(--primary-color);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

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

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    color: var(--primary-color);
}

.faq-question i {
    color: var(--secondary-color);
    transition: transform 0.3s;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.8;
}

/* Cabins Grid */
.cabins-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.cabin-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cabin-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.cabin-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin: 20px 20px 10px;
}

.cabin-card p {
    padding: 0 20px;
    color: #666;
}

.cabin-card ul {
    list-style: none;
    padding: 10px 20px;
}

.cabin-card ul li {
    padding: 5px 0 5px 25px;
    position: relative;
}

.cabin-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.cabin-card .btn {
    margin: 20px;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 50px 0;
    padding: 40px 0;
    border-top: 2px solid #eee;
    border-bottom: 2px solid #eee;
}

.stat-box {
    text-align: center;
}

.stat-box i {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.stat-box h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin: 10px 0;
}

.stat-box p {
    color: #666;
    margin: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
}

.feature-box i {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-box h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    background: #f8f8f8;
    padding: 60px;
    border-radius: 8px;
    margin: 40px 0;
}

.cta-section.center {
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-item i {
    font-size: 24px;
    color: var(--secondary-color);
    width: 30px;
    margin-top: 5px;
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    color: #666;
}

/* Hours Table */
.hours-table {
    width: 100%;
}

.hours-table tr {
    border-bottom: 1px solid #eee;
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 10px 0;
}

.hours-table td:first-child {
    font-weight: 500;
}

.hours-table td:last-child {
    text-align: right;
}

/* Social Links Large */
.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links-large a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f8f8;
    border-radius: 4px;
    color: var(--primary-color);
    text-decoration: none;
    transition: background 0.3s;
}

.social-links-large a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.social-links-large i {
    font-size: 20px;
}

/* Map Section */
.map-section {
    margin: 60px 0 0;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 30px 0;
}

.directions-info {
    text-align: center;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 8px;
}

/* Shop Page */
.shop-section {
    padding: 40px 0;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.shop-sidebar {
    background: white;
    padding: 25px;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.filter-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-section h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 8px;
}

.category-list a {
    color: #666;
    text-decoration: none;
    display: block;
    padding: 8px 10px;
    border-radius: 4px;
    transition: all 0.3s;
}

.category-list a:hover,
.category-list a.active {
    background: var(--primary-color);
    color: white;
}

.filter-checkbox {
    display: block;
    margin-bottom: 10px;
}

.filter-checkbox input {
    margin-right: 8px;
}

.filter-section select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-options select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination button,
.pagination span {
    padding: 10px 15px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

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

.pagination button.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Wishlist */
.wishlist-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.empty-wishlist {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.empty-wishlist i {
    font-size: 80px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-wishlist h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.btn-remove-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn-remove-wishlist:hover {
    background: #d32f2f;
    color: white;
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .two-column-layout {
        grid-template-columns: 1fr;
    }
    
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar {
        position: static;
    }
    
    .icon-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cabins-grid {
        grid-template-columns: 1fr;
    }
    
    .wishlist-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .icon-grid,
    .features-grid,
    .stats-section {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .wishlist-grid {
        grid-template-columns: 1fr;
    }
}

/* Staff Page Styles */
.staff-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.staff-intro h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.staff-intro .lead {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.staff-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.staff-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.staff-image {
    background: linear-gradient(135deg, var(--primary-color), #3d42a8);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
}

.staff-info {
    padding: 30px;
}

.staff-info h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.staff-role {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.staff-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.staff-contact {
    font-size: 14px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.staff-contact i {
    color: var(--secondary-color);
}

.staff-cta {
    background: linear-gradient(135deg, var(--primary-color), #3d42a8);
    color: white;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
}

.staff-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: white;
}

.staff-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.staff-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.staff-cta .btn-secondary {
    background: white;
    color: var(--primary-color);
}

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

@media (max-width: 768px) {
    .staff-grid {
        grid-template-columns: 1fr;
    }
    
    .staff-cta {
        padding: 40px 30px;
    }
    
    .staff-cta .cta-buttons {
        flex-direction: column;
    }
}

/* Advanced Filter Styles */
.filter-box {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.filter-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2f3192;
}

.filter-row,
.filter-row-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.filter-group label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.filter-select,
.filter-input {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    background: white;
    color: #333;
    width: 100%;
}

.filter-select:focus,
.filter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(47, 49, 146, 0.1);
}

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

.filter-select-sm {
    padding: 10px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    flex: 1;
    min-width: 0;
}

.price-range span {
    color: #666;
    font-weight: 600;
}

/* Shop Page Layout */
.shop-page {
    padding: 40px 0;
}

.shop-page .container {
    max-width: 1250px;
}

/* Filter box full width at top */
.shop-page .filter-box {
    width: 100%;
    margin-bottom: 30px;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
}

/* Shop Header with Sort */
.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.results-info {
    font-size: 14px;
    color: #666;
}

.shop-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shop-controls label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.shop-controls select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    background: white;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .filter-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .filter-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

.btn-search {
    padding: 10px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    background: #2f3192;
    color: white;
}

.btn-search:hover {
    background: #1f2182;
}

.filter-keywords {
    margin-top: 10px;
}

.filter-keywords label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 8px;
    display: block;
}

@media (max-width: 1200px) {
    .filter-row,
    .filter-row-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .filter-row,
    .filter-row-2 {
        grid-template-columns: 1fr;
    }
}

/* Product Detail Page Styles */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: start;
}

@media (max-width: 992px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.product-images .main-image {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #f9f9f9;
}

.product-images .main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-info {
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.product-title {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .product-title {
        font-size: 20px;
    }
    
    .product-price .price {
        font-size: 28px;
    }
    
    .product-price .compare-price {
        font-size: 18px;
    }
    
    .product-sku {
        font-size: 12px;
    }
    
    .product-stock {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 18px;
    }
    
    .product-price .price {
        font-size: 24px;
    }
    
    .product-price .compare-price {
        font-size: 16px;
    }
}

.product-sku {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.product-price {
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

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

.product-price .compare-price {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
    margin-left: 15px;
}

.product-stock {
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 600;
}

.in-stock {
    color: #28a745;
    display: flex;
    align-items: center;
    gap: 8px;
}

.in-stock i {
    font-size: 20px;
}

.out-of-stock {
    color: #dc3545;
    display: flex;
    align-items: center;
    gap: 8px;
}

.out-of-stock i {
    font-size: 20px;
}

.product-actions {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

.quantity-control {
    margin-bottom: 20px;
}

.quantity-control label {
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

.quantity-input {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: white;
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
}

.qty-btn:hover {
    background: var(--primary-color);
    color: white;
}

.quantity-input input {
    width: 70px;
    height: 45px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.btn-buy-now {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
    padding: 18px 30px;
    font-size: 18px;
    font-weight: 700;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 15px;
    transition: all 0.3s;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-buy-now:hover {
    background: #e5b800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-buy-now i {
    font-size: 20px;
}

.btn-add-cart {
    flex: 1;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-cart:hover {
    background: #252896;
}

.btn-wishlist {
    width: 55px;
    height: 55px;
    padding: 0;
    font-size: 20px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.btn-wishlist:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 49, 146, 0.3);
}

.btn-wishlist.active {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

.btn-wishlist.active:hover {
    background: #c82333;
    border-color: #c82333;
}

.btn-wishlist i {
    transition: all 0.3s ease;
}

.btn-wishlist.heart-beat {
    animation: heartBeat 0.6s ease;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(0.9); }
    20%, 40% { transform: scale(1.1); }
    50% { transform: scale(1.15); }
}

@keyframes slideInRight {
    from { transform: translateX(400px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(400px); opacity: 0; }
}

.product-actions > button:not(:first-child) {
    display: inline-flex;
    margin-right: 10px;
}

.out-of-stock-message {
    background: #f8d7da;
    color: #721c24;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.product-meta {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.meta-row {
    margin-bottom: 12px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-row:last-child {
    margin-bottom: 0;
}

.meta-label {
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-row a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.meta-value {
    color: #666;
}

.product-description,
.product-specs {
    margin-top: 30px;
}

.product-description h3,
.product-specs h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-description .desc-content,
.product-specs .specs-content {
    line-height: 1.8;
    color: #666;
    white-space: pre-line;
}

.product-tabs {
    margin-top: 60px;
    border-top: 2px solid #e0e0e0;
    padding-top: 40px;
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-button {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-button:hover {
    background: #e9ecef;
    border-color: var(--primary-color);
}

.tab-button.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.info-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.info-box h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 10px;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.info-box a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.info-box a:hover {
    text-decoration: underline;
}

.loading,
.error {
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: #666;
}

.error {
    color: #dc3545;
}

@media (max-width: 968px) {
    .product-layout {
        grid-template-columns: 1fr;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-price .price {
        font-size: 32px;
    }
    
    .btn-add-cart,
    .btn-wishlist {
        width: 48%;
    }
    
    .btn-wishlist {
        width: calc(20% - 10px);
    }
    
    .btn-add-cart {
        width: calc(80% - 10px);
    }
    
    .tabs {
        flex-direction: column;
    }
}

/* Related Products - You May Also Like */
.related-products-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.related-products-section .section-title {
    font-size: 28px;
    color: #2f3192;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.related-products-section .section-title i {
    margin-right: 10px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.related-product-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.related-product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.related-product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f8f8;
}

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

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

.related-product-info {
    padding: 15px;
}

.related-product-info h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.related-product-price {
    font-size: 18px;
    font-weight: 600;
    color: #2f3192;
    margin-bottom: 12px;
}

.btn-related-add-cart {
    width: 100%;
    padding: 10px;
    background: #2f3192;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-related-add-cart:hover {
    background: #1f2166;
    transform: translateY(-2px);
}

.btn-related-add-cart i {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .related-product-image {
        height: 150px;
    }
}

/* ================================================
   ADDITIONAL RESPONSIVE BREAKPOINTS FROM ORIGINAL TEMPLATE
   ================================================ */

@media screen and (max-width: 1580px) {
  #home-products-container .layout.half .button a {
    width: auto;
    padding: 0 20px;
  }
}

@media screen and (max-width: 1350px) {
  #home-products-container .layout.half {
    padding-left: 70px;
    padding-right: 70px;
  }
  #home-products-container .layout.half:before {
    left: 50px;
    right: 50px;
  }
  .footer-phone {
    padding-top: 10px;
  }
}

@media screen and (max-width: 1220px) {
  #header .imageboxes.iconside {
    float: right;
    padding: 0 50px 0 0;
  }
  #header .imageboxes.iconside .imagebox-item + .imagebox-item {
    display: none;
  }
  #header .imageboxes.iconside .imagebox-item-icon {
    float: right;
    margin: 0 0 0 9px;
  }
  #header .imageboxes.iconside .module-text {
    text-align: right;
  }
  #header .imageboxes h2 {
    padding-top: 2px;
  }
}

@media screen and (max-width: 1200px) {
  .sliderimg .slidertext h2 {
    font-size: calc(30px + 4vw);
  }
  .unslider .unslider-arrow {
    left: 50px !important;
    margin-left: 0px !important;
  }
  .unslider .unslider-arrow.next {
    left: 93px !important;
    margin-left: 0px !important;
  }
}

@media screen and (max-width: 1120px) {
  html {
    -webkit-text-size-adjust: none;
  }
  
  .img-left, .img-right {
    max-width: 50%;
  }
  
  .hide-on-mobile {
    display: none;
  }
  .show-on-mobile {
    display: inline;
  }
  
  .wrap {
    max-width: 1080px;
    padding: 0 30px;
  }
  
  #slidebox {
    display: none;
  }
}

@media screen and (max-width: 1080px) {
  #home-products-top-container {
    padding-bottom: 0;
  }
  
  .imageboxes.textbg.grid.six-column .imagebox-item {
    padding-top: 32.5% !important;
  }
  
  #home-products-container .layout.half > img {
    width: 100%;
  }
  
  #home-products-container .content {
    display: block;
  }
  
  #home-products-container .layout.half {
    width: 100%;
    box-sizing: border-box;
    padding-top: 60px;
    padding-bottom: 50px;
  }
  
  #home-products-container .layout.half:before {
    top: 50px;
    bottom: 50px;
  }
  
  html.mobile-active, html.mobile-active body {
    margin: 0;
    height: 100%;
    overflow: hidden;
  }
  
  .unslider .unslider-arrow {
    left: 30px !important;
  }
  
  .unslider .unslider-arrow.next {
    left: 73px !important;
  }
  
  .footer-phone {
    font-size: 30px;
  }
  
  #footer a.footer-phone [class^="icon-"], #footer a.footer-phone [class*=" icon-"], #footer a.footer-phone .material-icons {
    font-size: 28px;
  }
  
  #footer .footer-logo {
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
    border-right: 0;
    text-align: center;
  }
  
  #footer .footer-logo img {
    display: block;
    width: 100%;
    max-width: 260px;
    margin: 0 auto 10px;
  }
  
  #footer .footer-nav {
    clear: left;
    width: 33.33333%;
  }
  
  #footer .footer-contact {
    width: 33.33333%;
  }
  
  #footer .footer-location {
    width: 33.33333%;
  }
}

@media screen and (max-width: 870px) {
  .imageboxes.textabove .imagebox-item {
    margin-bottom: 1% !important;
  }
  
  #home-top-container .content {
    padding-bottom: 40px;
  }
  
  .imageboxes.textbg.grid.six-column .imagebox-item {
    padding-top: 49.5% !important;
    margin-bottom: 1%;
  }
  
  .nav-button {
    display: none;
  }
  
  .content {
    width: 100%;
    box-sizing: border-box;
  }
  
  .content .img-left, .content .img-right, .content .img-center {
    float: none;
    display: block;
    width: 100%;
    max-width: none;
    padding: 10px 0;
    margin: 0 0 0 0;
    box-sizing: border-box;
  }
  
  .layout.half, .layout.main, .layout.side, .layout.middle, .layout.third {
    float: none !important;
    width: 100% !important;
  }
  
  .layout.gap, .layout.third.gap {
    margin-left: 0%;
  }
  
  .layout.main {
    margin-bottom: 40px;
  }
  
  .layout-two-col-equal .layout.half + .layout.half {
    margin-top: 40px;
  }
  
  .layout-three-col-equal .layout.third {
    float: none;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 18px;
  }
  
  .layout-three-col-equal .layout.third.gap {
    margin-left: 0%;
  }
  
  #footer .footer-nav, #footer .footer-contact, #footer .footer-location {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  
  #footer p {
    margin: 0;
  }
  
  #footer .footer-location img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 800px) {
  #base a {
    margin-left: 15px;
  }
}

@media screen and (max-width: 680px) {
  #base {
    text-align: center;
  }
  
  #base a, #base a:first-child {
    display: block;
    float: none;
    margin-left: 0;
    text-align: center;
  }
  
  #base .links.iconlinks {
    display: block;
    float: none;
    margin-left: 0;
    text-align: center;
    margin-bottom: 10px;
  }
  
  #base .links.iconlinks .link-item {
    display: inline-block;
  }
  
  .product-options {
    font-size: 35px;
  }
}

@media screen and (max-width: 650px) {
  .imageboxes.textbg.grid.six-column .imagebox-item {
    padding-top: 100% !important;
  }
  
  .touch-device .imageboxes.textbg .imagebox-item .module-text {
    -webkit-transform: none;
    transform: none;
  }
  
  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .layout-two-col-equal .layout.half + .layout.half {
    margin-top: 0;
  }
  
  #home-products-container .layout.half {
    padding: 40px 40px 30px;
  }
  
  #home-products-container .layout.half:before {
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
  }
  
  .imageboxes.textabove .imagebox-item {
    margin-bottom: 20px !important;
  }
}

@media screen and (max-width: 550px) {
  .products.boxed .product-item .module-image .links {
    opacity: 1;
  }
  
  table.wishlist, table.wishlist tbody, table.wishlist tr, table.wishlist td {
    display: block;
  }
  
  table.wishlist tr {
    padding: 10px;
    border-bottom: 1px solid #ddd;
  }
  
  table.wishlist tr:after {
    content: '';
    display: block;
    clear: both;
  }
  
  table.wishlist th {
    display: none;
  }
  
  table.wishlist td {
    float: left;
    padding: 0;
    border-bottom: 0;
  }
  
  table.wishlist tr td.image {
    padding-left: 10px;
  }
  
  table.wishlist tr td.title, table.wishlist tr td.price {
    float: right;
    width: auto;
    padding-left: 20px;
    text-align: right;
  }
  
  table.wishlist tr td.title {
    max-width: 50%;
    line-height: 1.4;
  }
  
  table.wishlist tr td.price {
    clear: right;
  }
  
  #home-products-container .layout.half {
    line-height: 1.5;
  }
  
  #home-products-container .layout.half > h2 {
    font-size: 26px;
  }
}

@media screen and (max-width: 480px) {
  html {
    -webkit-text-size-adjust: none;
  }
  
  ul li {
    line-height: 26px;
    padding-bottom: 8px;
    background-position: 5px 9px;
  }
  
  .content, .layout.side p, .layout.side .side-holder {
    font-size: 15px;
  }
  
  .content h1 {
    font-size: 36px;
  }
  
  .content h2 {
    font-size: 36px;
  }
  
  .small {
    font-size: 13px;
  }
  
  .large {
    font-size: 17px;
  }
  
  .sitemap-holder {
    width: 100%;
  }
  
  .beforeafter-holder .beforeafter-item, .beforeafter-details .before-image, .beforeafter-details .after-image {
    width: 100%;
    margin-right: 0%;
  }
  
  .beforeafter-details .before-image {
    margin-bottom: 12%;
  }
  
  .video-holder {
    margin-top: 1.2em;
  }
  
  .video-holder .video-item {
    width: 100%;
    margin-right: 0%;
  }
  
  .product-item {
    width: 100%;
    margin-right: 0%;
  }
  
  .products-holder div:nth-child(3n+3) {
    margin-right: 0%;
  }
  
  .subscription-plans .subscription-plan {
    width: 100%;
    margin-right: 0%;
  }
  
  .subscription-plans div.subscription-plan:nth-child(2n+2) {
    margin-right: 0%;
  }
  
  .subscription-plans div.subscription-plan:nth-child(2n+3) {
    clear: none;
  }
  
  .address-selector li {
    width: 100%;
    margin-bottom: 18px;
  }
  
  .cart-checkradio-holder .checkradio {
    width: 100%;
  }
  
  /* iPhone zoom fix */
  select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"] {
    font-size: 16px !important;
  }
}

@media screen and (max-width: 370px) {
  #header .imageboxes.iconside .module-text {
    display: none;
  }
}
