/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --primary-gold: #c59b36;
    --primary-blue: #2a4e83;
    --text-dark: #333333;
    --text-grey: #666666;
    --bg-light: #faf8ef;
    --bg-white: #ffffff;
    --border-color: #eaeaea;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 10px;
}

.mt-4 {
    margin-top: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: white;
}

.btn-primary:hover {
    background-color: #b38a2c;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Header */
.header {
    background-color: white;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 65px; /* Increased from 55px */
    vertical-align: middle;
    transition: height 0.3s ease;
}

@media (max-width: 600px) {
    .header {
        padding: 12px 0; /* Revert padding for mobile header */
    }
    .logo img {
        height: 50px !important; /* Adjusted for better proportion on mobile */
    }
    /* Removed display: none for .main-nav */
    .header-right {
        gap: 10px;
    }
    .cart-btn {
        padding: 3px 10px;
    }
    .cart-btn svg {
        width: 16px;
        height: 16px;
    }
    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: -6px;
        right: -6px;
    }
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: capitalize;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-gold);
}

.header-right {
    display: flex;
    align-items: center;
}

.cart-btn {
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px 15px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.cart-btn:hover {
    background-color: #f9f9f9;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-gold);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    min-width: 20px;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-slider {
    position: relative;
    width: 100%;
}

/* Each slide item */
.slide-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide-item {
    flex: 0 0 50%;
    width: 50%;
    height: auto;
    object-fit: cover;
    display: block;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-gold);
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s;
}

.slider-arrow:hover {
    background: white;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Price Section */
.price-section {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 30;
}

.price-container {
    display: flex;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.price-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 40px;
    color: white;
}

.price-box.gold {
    background-color: #dcb348;
    /* Exact gold from original */
}

.price-box.silver {
    background-color: #9da3ab;
    /* Exact silver/grey from original */
}

.price-contact {
    background-color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.price-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.price-info .price {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
}

.price-info .price-change {
    font-size: 12px;
    margin-bottom: 5px;
}

.price-info .view-more {
    font-size: 12px;
    color: white;
    text-decoration: underline;
    opacity: 0.9;
}

/* Best Products */
.best-products {
    padding: 60px 0;
    background-color: var(--bg-white);
}

/* Section Title with Full Width Background */
.section-title-bg {
    background-color: var(--primary-blue);
    width: 100%;
    padding: 25px 0;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-title {
    color: var(--primary-gold);
    text-align: center;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    font-size: 12px;
    font-family: inherit;
    font-weight: 600;
    color: var(--text-grey);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    border: 1px solid var(--border-color);
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: white;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-img {
    margin-bottom: 20px;
}

.product-img img {
    max-width: 100%;
    height: auto;
}

.product-info h3 {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 15px;
    min-height: 40px;
}

.detail-link {
    color: var(--primary-gold);
    font-size: 12px;
    font-weight: 600;
    text-decoration: underline;
}

/* Services Section */
.services-section {
    background-color: var(--bg-light);
    /* Light beige background */
    padding: 60px 0;
}

.services-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.services-text {
    flex: 1;
}

.services-text h2 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 24px;
}

.services-text p {
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.8;
}

.services-images {
    flex: 1;
    display: flex;
    gap: 10px;
}

.services-images .img-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 4px;
}

.services-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Why Us Section */
.why-us-section {
    background-color: var(--bg-light);
    padding: 30px 0 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.why-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.why-header h2 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 22px;
}

.why-header p {
    font-size: 14px;
    color: var(--text-grey);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature-card {
    background: white;
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
}

.feature-card .icon {
    font-size: 30px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 12px;
    color: var(--text-grey);
}

/* Social Share */
.social-share {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.btn-social {
    padding: 8px 15px;
    border: none;
    color: white;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border-radius: 3px;
}

.btn-social.facebook {
    background-color: #3b5998;
}

.btn-social.twitter {
    background-color: #1da1f2;
}

.btn-social.linkedin {
    background-color: #0077b5;
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 50px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 40px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary-gold);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: #e0e0e0;
}

.footer-col ul li a:hover {
    color: white;
    text-decoration: underline;
}

.contact-info li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: #e0e0e0;
    margin-bottom: 12px;
}

.contact-info li i {
    margin-top: 4px;
    color: white;
}

.accreditation-logos,
.security-logos {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.accreditation-logos img,
.security-logos img {
    height: 35px;
    object-fit: contain;
    background: transparent;
    border-radius: 3px;
}

.footer-bottom {
    background-color: #1d365a;
    /* Darker blue */
    text-align: center;
    padding: 15px 0;
    font-size: 12px;
    color: #b0c4de;
}

/* ============================
   RESPONSIVE
   ============================ */

/* Toast Notification */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast-notification {
    background: rgba(42, 78, 131, 0.95); /* Brand blue semi-transparent */
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-width: 300px;
    max-width: 400px;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.toast-content i {
    font-size: 18px;
    color: #c59b36; /* Brand gold */
}

.toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.toast-close:hover {
    color: white;
}

@media (max-width: 768px) {
    .toast-container {
        top: 20px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 90%;
        align-items: center;
    }

    .toast-notification {
        width: 100%;
        max-width: none;
    }
}

/* ... existing responsive ... */
/* Large tablets / small desktops (max 1024px) */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .services-container {
        flex-direction: column;
    }

    .services-images {
        width: 100%;
    }
}

/* Tablets (max 768px) */
@media (max-width: 768px) {

    /* Header */
    .header {
        padding: 12px 0;
    }

    .header-container {
        flex-wrap: wrap;
        gap: 15px;
        align-items: center;
    }

    .logo {
        order: 1;
        flex: 0 0 auto;
    }

    .header-right {
        order: 2;
        flex: 0 0 auto;
        margin-top: 5px;
    }

    .main-nav {
        order: 3;
        width: 100%;
        border-top: 1px solid #eee;
        padding-top: 12px;
        margin-top: 10px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 20px;
    }

    .main-nav a {
        font-size: 13px;
        padding: 8px 0;
    }

    /* Banner */
    .slide-img {
        width: 100%;
    }

    .slide-img-second {
        display: none;
    }

    /* Price bar */
    .price-container {
        flex-direction: column;
    }

    .price-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px;
        gap: 4px;
    }

    .price-action {
        margin-top: 6px;
    }

    .price-contact {
        padding: 18px 20px;
    }

    /* Products */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-tabs {
        gap: 8px;
    }

    .tab-btn {
        padding: 8px 12px;
        font-size: 11px;
    }

    /* Services */
    .services-section {
        padding: 40px 0;
    }

    .services-container {
        flex-direction: column;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-col.align-right {
        text-align: left;
    }
}

/* Mobile phones (max 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    /* Header */
    .logo img {
        height: 40px; /* Increased from 32px (25% increase) */
    }

    .cart-btn {
        padding: 8px !important;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cart-count {
        top: -4px;
        right: -4px;
        min-width: 18px;
        height: 18px;
        font-size: 10px;
    }

    .main-nav a {
        font-size: 12px;
    }

    /* Banner */
    .slide-item {
        flex: 0 0 100%;
        width: 100%;
    }

    /* Price */
    .price-box {
        padding: 14px;
    }

    .price-info h3 {
        font-size: 16px;
    }

    .price-info .price {
        font-size: 12px;
    }

    /* Products */
    .best-products {
        padding: 40px 0;
    }

    .section-title {
        font-size: 20px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card {
        padding: 12px;
    }

    .product-info h3 {
        font-size: 12px;
        min-height: 32px;
    }

    /* Features */
    .why-us-section {
        padding: 20px 0 40px;
    }

    .why-header h2 {
        font-size: 17px;
    }

    .why-header p {
        font-size: 12px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .feature-card {
        padding: 16px 10px;
    }

    .feature-card .icon {
        font-size: 22px;
    }

    .feature-card h3 {
        font-size: 12px;
    }

    .feature-card p {
        font-size: 11px;
    }

    /* Social share */
    .social-share {
        flex-wrap: wrap;
    }

    /* Footer */
    .footer {
        padding-top: 30px;
    }

    .footer-col h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer-bottom {
        font-size: 11px;
        padding: 12px 10px;
    }

    .accreditation-logos,
    .security-logos {
        flex-wrap: wrap;
    }
}