/* Root Variables */
:root {
    --primary-color: #0066cc;
    --secondary-color: #003d7a;
    --accent-color: #ff6b35;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;

    --font-primary: 'Josefin Sans', sans-serif;
    --font-secondary: 'Libre Baskerville', serif;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    text-transform: capitalize;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 1rem auto 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 5px;
    border: 3px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

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

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

.btn-secondary {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

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

.btn-outline {
    background: transparent;
}

.text-center {
    text-align: center;
    margin-top: 2rem;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

/* Hide navbar on scroll down (mobile only) */
@media (max-width: 1024px) {
    .navbar.hide-on-scroll {
        transform: translateY(-100%);
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-menu a:hover,
.nav-menu a.active,
.nav-menu a:active {
    color: var(--primary-color);
    transform: translateY(-1px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 8px rgba(0, 102, 204, 0.3);
    /* Slight depth shadow + primary-color glow */
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Mobile menu toggle animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Styles */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
        z-index: 1002;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a.active {
        color: var(--primary-color);
        font-weight: 700;
    }
}

/* Header Contact Buttons Container */
.header-contact-buttons {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
}

/* Icon-Only Buttons Base Style */
.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    background: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    /* Softer shadow */
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle rim */
    flex-shrink: 0;
}

.icon-button:hover,
.icon-button:active {
    transform: translateY(-3px) scale(1.05);
    /* Slight lift and grow */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
}

.icon-button svg {
    flex-shrink: 0;
}

/* Phone Button */
.icon-button.phone-button {
    color: var(--primary-color);
}

.icon-button.phone-button:hover,
.icon-button.phone-button:active {
    color: var(--secondary-color);
    background: #e6f2ff;
    /* Light blue tint on hover */
    border-color: rgba(0, 102, 204, 0.2);
}

/* WhatsApp Button in Header */
.icon-button.whatsapp-button {
    color: #25D366;
}

.icon-button.whatsapp-button:hover,
.icon-button.whatsapp-button:active {
    color: #1ea952;
    background: #e9fbf0;
    /* Light green tint on hover */
    border-color: rgba(37, 211, 102, 0.2);
}

/* Facebook Button in Header */
.icon-button.facebook-button {
    color: #1877f2;
}

.icon-button.facebook-button:hover,
.icon-button.facebook-button:active {
    color: #145dbf;
    background: #e8f1fe;
    /* Light facebook-blue tint on hover */
    border-color: rgba(24, 119, 242, 0.2);
}

/* Hero Section */
.hero {
    height: 600px;
    background: url('../images/hero-bg.png') center center/cover no-repeat;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Services Preview */
.services-preview {
    padding: 40px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Clickable service card link */
a.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.service-card-link:hover {
    text-decoration: none;
}

a.service-card-link h3 {
    transition: var(--transition);
}

a.service-card-link:hover h3 {
    color: var(--secondary-color);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Featured Boats */
.featured-boats {
    padding: 40px 0;
}

.boats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.boat-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.boat-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.boat-card-link:hover .boat-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.boat-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.boat-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.boat-badge.new {
    background: #28a745;
}

.boat-badge.finance {
    top: 50px;
    left: -60px;
    right: auto;
    width: 250px;
    padding: 7px 0;
    background: #1a9e4a;
    border-radius: 0;
    font-size: 0.72rem;
    text-align: center;
    transform: rotate(-45deg);
    transform-origin: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.boat-content {
    padding: 1.5rem;
}

.boat-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.boat-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.boat-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.spec-badge {
    background: var(--bg-light);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    align-items: stretch;
}

.btn-view-details {
    cursor: pointer;
    text-align: center;
}

.btn-quick-view {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    font-weight: 600;
}

.btn-quick-view:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.btn-quick-view svg {
    display: block;
    width: 18px;
    height: 18px;
}

.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1ea952;
    border-color: #1ea952;
    color: white;
    transform: scale(1.05);
}

.btn-enquire {
    background: var(--accent-color);
    border: 3px solid var(--accent-color);
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    font-weight: 600;
}

.btn-enquire:hover {
    background: #e55a28;
    border-color: #e55a28;
    transform: scale(1.05);
}

.loader {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

/* Why Choose Us */
.why-choose-us {
    padding: 40px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Call to Action */
.cta {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #ccc;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.2);
    padding-left: 1.25rem;
}

.social-link svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.15);
    border-color: #1877F2;
}

.social-link.whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: #25D366;
}

/* ============================================
   SHOP PAGE STYLES
   ============================================ */

/* Shop Controls */
.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: var(--white);
    color: var(--text-dark);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

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

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.search-box {
    flex: 1;
    max-width: 400px;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .shop-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .filter-buttons {
        justify-content: center;
    }

    .search-box {
        max-width: 100%;
    }
}

/* ============================================
   CONTACT FORM STYLES
   ============================================ */

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

/* Contact Info Sections */
.contact-info {
    margin-top: 3rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.contact-info-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-item p {
    color: var(--text-light);
    margin: 0.25rem 0;
}

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: block;
}

.modal-content {
    position: relative;
    background-color: var(--white);
    margin: 2% auto;
    width: 90%;
    max-width: 1200px;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--white);
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    max-height: 80vh;
    overflow: hidden;
}

.modal-gallery {
    position: relative;
    display: flex;
    flex-direction: column;
}

.modal-gallery .main-image {
    position: relative;
    width: 100%;
    height: 400px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--border-color);
}

.modal-gallery .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-gallery .gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 5;
}

.modal-gallery .gallery-nav:hover {
    background: var(--primary-color);
    color: var(--white);
}

.modal-gallery .gallery-nav.prev {
    left: 1rem;
}

.modal-gallery .gallery-nav.next {
    right: 1rem;
}

.modal-gallery .thumbnail-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 0;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

.modal-gallery .thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    flex-shrink: 0;
}

.modal-gallery .thumbnail:hover {
    border-color: var(--primary-color);
}

.modal-gallery .thumbnail.active {
    border-color: var(--primary-color);
}

.modal-gallery .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    overflow-y: auto;
    max-height: 80vh;
    padding-right: 1rem;
    padding-bottom: 2rem;
}

.modal-info .product-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.modal-info .product-badge.new {
    background: #e8f5e9;
    color: #2e7d32;
}

.modal-info .product-badge.used {
    background: #fff3e0;
    color: #f57c00;
}

.modal-info .product-badge.finance {
    background: #e8f5ee;
    color: #1a9e4a;
}

.modal-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.modal-info .product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.modal-info .product-description {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--text-light);
}

.modal-info .product-specs {
    margin-bottom: 2rem;
}

.modal-info .product-specs h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.modal-info .spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.modal-info .spec-label {
    font-weight: 600;
    color: var(--text-dark);
}

.modal-info .spec-value {
    color: var(--text-light);
}

.modal-info .product-features {
    margin-bottom: 2rem;
}

.modal-info .product-features h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.modal-info .product-features ul {
    list-style: none;
    padding: 0;
}

.modal-info .product-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.modal-info .product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.modal-info .product-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.modal-info .product-actions .btn-enquire {
    flex: 1;
    min-width: 150px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 90vh;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .modal-body {
        grid-template-columns: 1fr;
        padding: 1rem;
        max-height: none;
        overflow: visible;
    }

    .modal-gallery .main-image {
        height: 300px;
    }

    .modal-info {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
        padding-bottom: 2rem;
    }

    .modal-info h2 {
        font-size: 1.5rem;
    }

    .modal-info .product-price {
        font-size: 1.5rem;
    }
}

/* ===================================
   Outboards Page Styles
   =================================== */

.outboards-intro {
    padding: 3rem 0;
    background: var(--bg-light);
}

.intro-content h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.intro-content>p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.suzuki-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.suzuki-features .feature {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.suzuki-features .feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.suzuki-features .feature p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.outboard-products {
    padding: 2.5rem 0;
}

.outboard-products .section-title {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* Outboards Grid */
.outboards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.outboards-grid .product-card {
    display: block;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.outboards-grid .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.outboards-grid a.product-card {
    cursor: pointer;
}

.outboards-grid a.product-card:hover h3 {
    color: var(--primary-color);
}

.outboards-grid .product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}

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

.outboards-grid .product-info {
    padding: 1.5rem;
}

.outboards-grid .product-info h3 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    color: var(--secondary-color);
}

.outboards-grid .product-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.suzuki-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    text-align: center;
    color: var(--white);
}

.suzuki-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}

.suzuki-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.suzuki-cta .btn {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.suzuki-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive for Outboards */
@media (max-width: 1200px) {
    .outboards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

    .suzuki-features {
        grid-template-columns: 1fr;
    }

    .suzuki-cta {
        padding: 2rem 1rem;
    }

    .suzuki-cta h3 {
        font-size: 1.5rem;
    }

    .suzuki-cta p {
        font-size: 1rem;
    }
}

/* ===================================
   About Page Styles
   =================================== */

.about-content {
    padding: 2.5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--text-dark);
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.about-image img {
    width: 100%;
    height: auto;
}

.why-choose {
    padding: 2.5rem 0;
    background: var(--bg-light);
}

.why-choose .section-title {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   Services Page Styles
   =================================== */

.main-services {
    padding: 2.5rem 0;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse>* {
    direction: ltr;
}

.service-content h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-content p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.service-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-image img {
    width: 100%;
    height: auto;
}

.additional-services {
    padding: 2.5rem 0;
    background: var(--bg-light);
}

.additional-services .section-title {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive for About and Services */
@media (max-width: 768px) {

    .about-grid,
    .service-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail.reverse {
        direction: ltr;
    }

    .values-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Contact Page Styles
   =================================== */

.contact-section {
    padding: 2.5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.form-message {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Form Validation States */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-group input.valid,
.form-group textarea.valid,
.form-group select.valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.contact-info h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Responsive for Contact */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-wrapper {
        order: 2;
    }

    .contact-info {
        order: 1;
    }
}

/* ===================================
   Product Page Styles
   =================================== */

/* Breadcrumbs */
.breadcrumbs {
    background: var(--bg-light);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs .separator {
    margin: 0 0.5rem;
    color: var(--text-light);
}

.breadcrumbs .current {
    color: var(--text-dark);
    font-weight: 500;
}

/* Product Page Container */
.product-page {
    padding: 3rem 0;
}

/* Social Share Buttons (Top) */
.product-share-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.product-share-top .share-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-dark);
    transition: var(--transition);
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-whatsapp:hover {
    background: #25D366;
    color: white;
}

.share-facebook:hover {
    background: #1877F2;
    color: white;
}

.share-twitter:hover {
    background: #1DA1F2;
    color: white;
}

.share-email:hover {
    background: var(--secondary-color);
    color: white;
}

/* Product Detail Container (2-column layout like modal) */
.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Product Gallery */
.product-gallery {
    position: relative;
    display: flex;
    flex-direction: column;
}

.main-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--border-color);
}

.main-image-container img,
.main-image-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-image-container .gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 5;
}

.main-image-container .gallery-nav:hover {
    background: var(--primary-color);
    color: var(--white);
}

.main-image-container .gallery-nav.prev {
    left: 1rem;
}

.main-image-container .gallery-nav.next {
    right: 1rem;
}

.product-gallery .thumbnail-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 0;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

.product-gallery .thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    flex-shrink: 0;
}

.product-gallery .thumbnail:hover {
    border-color: var(--primary-color);
}

.product-gallery .thumbnail.active {
    border-color: var(--primary-color);
}

.product-gallery .thumbnail img,
.product-gallery .thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
}

.product-info .product-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.product-info .product-badge.new {
    background: #e8f5e9;
    color: #2e7d32;
}

.product-info .product-badge.used {
    background: #fff3e0;
    color: #f57c00;
}

.product-info .product-badge.finance {
    background: #e8f5ee;
    color: #1a9e4a;
}

.product-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: var(--font-secondary);
    line-height: 1.2;
}

.product-info .product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.product-info .product-description {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--text-light);
}

.product-info .product-specs {
    margin-bottom: 2rem;
}

.product-info .product-specs h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-info .specs-list {
    display: flex;
    flex-direction: column;
}

.product-info .spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.product-info .spec-label {
    font-weight: 600;
    color: var(--text-dark);
}

.product-info .spec-value {
    color: var(--text-light);
    text-align: right;
}

.product-info .product-features {
    margin-bottom: 2rem;
}

.product-info .product-features h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-info .features-list {
    list-style: none;
    padding: 0;
}

.product-info .features-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.product-info .features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.product-info .product-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-info .product-actions .btn {
    flex: 1;
    min-width: 200px;
}

/* Related Products Section */
.related-products {
    padding: 4rem 0;
    background: var(--bg-light);
}

.related-products .section-title {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.related-products .boat-card {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.related-products .boat-card:hover {
    transform: translateY(-5px);
}

/* Back to Shop Button */
.back-to-shop {
    padding: 2rem 0;
    text-align: center;
}

.back-to-shop .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Responsive for Product Page */
@media (max-width: 768px) {
    .breadcrumbs {
        font-size: 0.875rem;
    }

    .breadcrumbs .separator {
        margin: 0 0.25rem;
    }

    .product-share-top {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .share-btn {
        width: 36px;
        height: 36px;
    }

    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .main-image-container {
        height: 300px;
    }

    .product-info h1 {
        font-size: 1.75rem;
    }

    .product-info .product-price {
        font-size: 1.5rem;
    }

    .product-info .product-actions {
        flex-direction: column;
    }

    .product-info .product-actions .btn {
        width: 100%;
        min-width: auto;
    }

    .related-products {
        padding: 3rem 0;
    }

    .related-products .section-title {
        font-size: 2rem;
    }

    .back-to-shop {
        padding: 1.5rem 0;
    }
}

/* Global Page Header Padding Fix */
.page-header {
    padding: 20px 0 !important;
}

/* ====================================
   Boat Builder Styles
   ==================================== */
.builder-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-bottom: 3rem;
}

.builder-back-btn {
    margin-bottom: 20px;
    background-color: #6c757d;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: background 0.3s;
}

.builder-back-btn:hover {
    background-color: #5a6268;
    color: white;
}

.builder-gallery {
    margin-bottom: 30px;
}

.builder-main-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid #eee;
}

.builder-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.builder-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #ddd;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.builder-thumb:hover,
.builder-thumb.active {
    opacity: 1;
    border-color: var(--primary-color);
}

.builder-desc {
    line-height: 1.6;
    color: #555;
}

.builder-specs .spec-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.builder-specs .spec-label {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.builder-specs .spec-value {
    color: #666;
    text-transform: uppercase;
    text-align: right;
}

.config-panel {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 20px;
}

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

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

.custom-check,
.custom-radio {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 8px;
    transition: border-color 0.2s;
}

.custom-check:hover,
.custom-radio:hover {
    border-color: var(--primary-color);
}

.total-section {
    background: #f0f7ff;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    margin-top: 30px;
}

.total-price {
    font-size: 2em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Boat Builder Gallery Override */
.builder-gallery .main-image-container {
    height: 400px;
}