/*=================================================================
    MODERN THEME CSS FOR RAMAFHH
    Inspired by samindustry.com design
=================================================================*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============================================
   1. ROOT VARIABLES & RESET
============================================ */
:root {
    --primary-color: #e91e63;
    --secondary-color: #c2185b;
    --text-dark: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   2. TOP BAR
============================================ */
.top-bar {
    background: var(--bg-light);
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    color: var(--text-light);
}

.top-bar-right a {
    color: var(--text-light);
    margin-left: 20px;
    font-size: 13px;
}

.top-bar-right a:hover {
    color: var(--primary-color);
}

.top-bar-right i {
    margin-right: 5px;
}

/* ============================================
   3. MODERN HEADER & NAVIGATION
============================================ */
.modern-header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* ============================================
   LOGO OVERRIDE — removes old stylec619.css dark skewed shape
============================================ */
.modern-header .logo {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    background-color: transparent !important;
    z-index: 2;
    display: flex;
    align-items: center;
}

/* Kill the old dark skewed :after pseudo-element */
.modern-header .logo:after {
    display: none !important;
    content: none !important;
    background: none !important;
}

/* Kill the old .navbar-brand dark background */
.modern-header .logo .navbar-brand,
.modern-header .logo a {
    padding: 0 !important;
    margin: 0 !important;
    background-color: transparent !important;
    height: auto !important;
    line-height: normal !important;
}

.modern-header .logo img {
    max-height: 70px;
    width: auto !important;
    max-width: 220px !important;
    display: block !important;
    position: relative !important;
    z-index: 3;
    transition: all 0.3s ease;
}

/* Main Navigation */
.main-navigation {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
    margin-left: 30px;
}

.nav-menu > li > a {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    display: inline-block;
    transition: all 0.3s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary-color);
}

.nav-menu > li > a i {
    font-size: 12px;
    margin-left: 5px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    float: right;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mega Dropdown */
.dropdown-nav {
    position: relative;
}

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    box-shadow: var(--shadow-hover);
    min-width: 800px;
    padding: 30px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    margin-top: 15px;
}

.dropdown-nav:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.mega-menu-column {
    padding: 0 15px;
}

.mega-menu-column h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
}

.mega-menu-column ul li {
    margin-bottom: 8px;
}

.mega-menu-column ul li a {
    color: var(--text-light);
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.mega-menu-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* ============================================
   4. HERO/BANNER SECTION
============================================ */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* ============================================
   5. SECTION STYLES
============================================ */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
}

.section-header h2 span {
    color: var(--primary-color);
}

/* ============================================
   6. PRODUCT CATEGORIES
============================================ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    background: var(--white);
}

.category-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card .category-info {
    padding: 20px;
    text-align: center;
}

.category-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* ============================================
   7. ABOUT SECTION
============================================ */
.about-section {
    background: var(--bg-light);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ============================================
   8. PRODUCTS SECTION
============================================ */
.products-section {
    background: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-art {
    color: var(--text-lighter);
    font-size: 14px;
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-primary {
    flex: 1;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-icon {
    width: 45px;
    height: 45px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ============================================
   9. MODERN FOOTER
============================================ */
.modern-footer {
    background: #2c3e50;
    color: #ecf0f1;
    position: relative;
    z-index: 1;
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 50px;
    filter: brightness(0) invert(1);
}

.footer-widget p {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-widget h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #bdc3c7;
    font-size: 14px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 3px;
    font-size: 16px;
}

/* Newsletter Form */
.newsletter-form {
    margin-top: 20px;
}

.newsletter-form .form-group {
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    border-radius: 4px;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #95a5a6;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

/* Footer Bottom */
.footer-bottom {
    background: #1a252f;
    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;
    color: #95a5a6;
    font-size: 14px;
}

.footer-bottom a {
    color: var(--primary-color);
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ============================================
   10. BACK TO TOP BUTTON
============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    font-size: 20px;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: var(--white);
}

/* ============================================
   11. UTILITIES
============================================ */
.text-center {
    text-align: center;
}

.pad-top-50 {
    padding-top: 50px;
}

.pad-top-80 {
    padding-top: 80px;
}

.pad-bottom-80 {
    padding-bottom: 80px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

/* ============================================
   12. RESPONSIVE STYLES
============================================ */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu > li {
        margin: 0 0 20px 0;
        width: 100%;
    }

    .nav-menu > li > a {
        display: block;
        padding: 10px 0;
    }

    .mega-dropdown {
        position: static;
        transform: none;
        min-width: 100%;
        box-shadow: none;
        padding: 20px 0;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .dropdown-nav.active .mega-dropdown {
        display: block;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .top-bar-right a {
        margin: 0 10px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 24px;


    }

    .hero-section {
        padding: 50px 0;
    }

    .hero-section h1 {
        font-size: 28px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BANNER SLIDER SECTION
============================================ */

/*
 * FIXED: 1640x624 banner images — NO cropping
 * Uses padding-top aspect-ratio trick: 624/1640 = 38.05%
 * background-size: 100% 100% fills the box exactly → no cut from any side
 */

.modern-banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;       /* keeps slider tidy */
}

.banner-slider-container {
    width: 100%;
}

/* === THE SLIDE (is an <a> tag — must be display:block) === */
.banner-slide {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 38.05%;    /* 624 ÷ 1640 × 100 = perfectly proportional */
    text-decoration: none;
    overflow: hidden;
}

/* === THE IMAGE BOX === */
.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;   /* fills box fully — NO side/top/bottom cropping */
    background-position: center center;
    background-repeat: no-repeat;
}

/* === OWL CAROUSEL: make slider act as positioning context for nav === */
#banner-slider {
    position: relative;
}

#banner-slider .owl-stage-outer {
    overflow: hidden;
}

/* owl-item height must match slide content */
#banner-slider .owl-item {
    overflow: hidden;
}

/* === NAV ARROWS — inside the banner === */
#banner-slider .owl-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;   /* clicks pass through to slides */
    margin: 0 !important;
}

#banner-slider .owl-nav button.owl-prev,
#banner-slider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: all;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.40) !important;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.35) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    transition: background 0.25s ease;
    z-index: 10;
}

#banner-slider .owl-nav button.owl-prev { left: 15px; }
#banner-slider .owl-nav button.owl-next { right: 15px; }

#banner-slider .owl-nav button.owl-prev:hover,
#banner-slider .owl-nav button.owl-next:hover {
    background: rgba(0, 0, 0, 0.65) !important;
    color: #fff !important;
}

/* === DOTS — at bottom of banner === */
#banner-slider .owl-dots {
    position: absolute;
    bottom: 14px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
    margin: 0 !important;
}

#banner-slider .owl-dot span {
    display: inline-block;
    width: 10px !important;
    height: 10px !important;
    background: rgba(255, 255, 255, 0.55) !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

#banner-slider .owl-dot.active span {
    background: #ffffff !important;
    width: 28px !important;
    border-radius: 6px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .banner-slide {
        padding-top: 0;          /* switch to fixed height on mobile */
        height: 300px;
    }
    .banner-image {
        background-size: cover;  /* cover looks better on small screens */
        background-position: center center;
    }
}

@media (max-width: 480px) {
    .banner-slide {
        height: 220px;
    }
    #banner-slider .owl-nav button.owl-prev,
    #banner-slider .owl-nav button.owl-next {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

/* ============================================/* =============================
   PAGE HEADER (For other pages)
============================================= */
.page-header {
    position: relative;
    padding: 80px 0 60px;
    color: var(--white);
    text-align: center;

    /* Image background */
    background-image: url("https://ramafhh.com/images/ban11.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* optional: thora depth */
    overflow: hidden;
}

/* Gradient overlay on top of image */
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.75;              /* yahan 0.65 - 0.85 adjust kar sakte ho */
    z-index: 0;
}

/* Ensure content stays above overlay */
.page-header .page-title,
.page-header .breadcrumb,
.page-header h1,
.page-header a,
.page-header p,
.page-header span {
    position: relative;
    z-index: 1;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #01a8ec;
}

.breadcrumb {
    font-size: 14px;
    color: rgba(1, 168, 236, 0.90);
}

.breadcrumb a {
    color: #01a8ec;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    margin: 0 10px;
    color: rgba(1, 168, 236, 0.70);
}

/* ============================================
   PRODUCTS LISTING PAGE
============================================ */
.products-listing {
    padding: 80px 0;
    overflow: visible;
    position: relative;
    z-index: 1;
}

.no-products {
    text-align: center;
    padding: 60px 20px;
}

.no-products h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.no-products p {
    color: var(--text-light);
}

/* ============================================
   PAGINATION
============================================ */
.pagination-wrapper {
    margin-top: 50px;
    text-align: center;
}

.pagination {
    display: inline-flex;
    gap: 10px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 15px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination .active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ============================================
   PRODUCT DETAIL PAGE
============================================ */
.product-detail-section {
    padding: 80px 0;
}

.product-detail-image {
    position: relative;
}

.product-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.product-thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.product-thumbnails img:hover,
.product-thumbnails img.active {
    border-color: var(--primary-color);
}

.product-detail-info h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.product-detail-art {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.product-detail-art span {
    color: var(--primary-color);
    font-weight: 600;
}

.product-details-box {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.product-details-box b {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.product-options {
    margin: 25px 0;
}

.product-option {
    margin-bottom: 20px;
}

.product-option label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.product-option select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.product-option select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
}

.quantity-selector label {
    font-weight: 500;
    color: var(--text-dark);
}

.quantity-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.quantity-input button {
    background: var(--bg-light);
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.quantity-input button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.quantity-input input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.product-actions-detail {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-add-to-cart {
    flex: 1;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
    background: var(--secondary-color);
}

/* ============================================
   CONTENT PAGE
============================================ */
.content-section {
    padding: 80px 0;
}

.content-box {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    line-height: 1.8;
}

.content-box h1,
.content-box h2,
.content-box h3 {
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-box p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.content-box ul,
.content-box ol {
    margin: 15px 0 15px 30px;
}

.content-box li {
    color: var(--text-light);
    margin-bottom: 8px;
}

/* Contact Form in Content Page */
.contact-form-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.contact-form-box h3 {
    margin-bottom: 25px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
}

/* ============================================
   RESPONSIVE STYLES FOR NEW SECTIONS
============================================ */
@media (max-width: 768px) {
    /* banner-slide height handled in banner section above */

    .banner-title {
        font-size: 36px;
    }

    .banner-subtitle {
        font-size: 18px;
    }

    .banner-content {
        padding-top: 120px;
    }

    .page-header {
        padding: 60px 0 40px;
    }

    .page-title h1 {
        font-size: 32px;
    }

    .product-actions-detail {
        flex-direction: column;
    }

    .content-box {
        padding: 25px;
    }

    .contact-form-box {
        padding: 25px;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .banner-slide {
        height: 350px;
    }

    .banner-title {
        font-size: 28px;
    }

    .banner-subtitle {
        font-size: 16px;
    }

    .banner-content {
        padding-top: 80px;
    }

    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .owl-carousel .owl-nav button.owl-prev {
        left: 10px;
    }

    .owl-carousel .owl-nav button.owl-next {
        right: 10px;
    }
}
/* ==============================
   ABOUT PAGE (SCOPED STYLES)
================================ */
.about-page{
  --brand: #0b5ed7;
  --brand-2: #0a3d91;
  --text: #121826;
  --muted: #4b5563;
  --card: #ffffff;
  --bg: #f5f7fb;
  --border: rgba(18, 24, 38, 0.10);
  --shadow: 0 12px 30px rgba(18, 24, 38, 0.10);

  color: var(--text);
  background: var(--bg);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.about-container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 16px 56px;
}

/* HERO */
.about-hero{
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 56px 16px;
  background-image:
    linear-gradient(120deg, rgba(214, 51, 132, 0.88), rgba(0, 0, 0, 0.30)),
    var(--hero-img);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
}

.about-hero__overlay{ display:none; } /* reserved if needed */

.about-hero__inner{
  max-width: 1100px;
  width: 100%;
  color: #fff;
  text-align: left;
}

.about-hero__kicker{
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.92;
}

.about-hero__title{
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 800;
}

.about-hero__subtitle{
  margin: 0 0 22px;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
}

.about-hero__cta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* BUTTONS */
.about-page .btn{
  display: inline-block;
  padding: 11px 16px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.about-page .btn:active{ transform: translateY(1px); }

.about-page .btn--primary{
  background: #fff;
  color: var(--brand-2);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

.about-page .btn--ghost{
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.30);
}

/* SECTION + CARDS */
.about-section{ }

.about-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px 18px;
}

.about-card--soft{
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.about-card--border{
  border-left: 6px solid var(--brand);
}

.about-h2{
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.about-card p{
  margin: 0 0 12px;
  line-height: 1.75;
  color: var(--muted);
  font-size: 15px;
}

.about-card p strong{ color: var(--text); }

/* GRID */
.about-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: -42px; /* pulls cards upward slightly under hero */
}

.about-grid--2{
  margin-top: 18px;
}

@media (min-width: 900px){
  .about-grid{ grid-template-columns: 1.1fr 0.9fr; }
  .about-grid.about-grid--2{ grid-template-columns: 1fr 1fr; }
}

/* HIGHLIGHTS */
.about-highlights{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 16px 0;
}

@media (min-width: 700px){
  .about-highlights{ grid-template-columns: repeat(3, 1fr); }
}

.highlight{
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 10px 24px rgba(18, 24, 38, 0.08);
}

.highlight__title{
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

.highlight__value{
  margin-top: 6px;
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
}

.highlight__note{
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

/* DL (Company Information) */
.about-dl{
  margin: 0;
}

.about-dl__row{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}

.about-dl__row:last-child{ border-bottom: 0; }

.about-dl dt{
  font-weight: 800;
  color: var(--text);
  font-size: 14px;
}

.about-dl dd{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  
  .map-open-link{
  display:inline-block;
  padding:10px 14px;
  border-radius:12px;
  background:#01a8ec;
  color:#fff !important;
  font-weight:900;
  text-decoration:none;
  box-shadow: 0 12px 24px rgba(1, 168, 236, 0.22);
}
.map-open-link:hover{ opacity:0.95; }