:root {
    --gugu-green: #3e7122;
    --gugu-green-dark: #2f5a20;
    --gugu-green-light: #4a8a2a;
    --gugu-green-border: #cfdcc7;
    --gugu-gray-bg: #dddddd;
    --gugu-gray-light: #f4f4f4;
    --gugu-gray-border: #e5e5e5;
    --gugu-gray-text: #888888;
    --gugu-text: #333333;
    --gugu-btn-muted: #d9d9d9;
    --gugu-content-max: 1728px;
    --gugu-pad-x: 96px;
    --gugu-listing-img: 196px;
    --gugu-dealer-img-h: 232px;
}

/* ============================================
   1. BASE STYLES & GLOBAL ELEMENTS
   ============================================ */
body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
        Arial, sans-serif;
    font-size: 14px;
    line-height: 1.45;
    color: var(--gugu-text);
    background: #fff;
    margin: 0;
}

.gugu-container {
    width: 100%;
    max-width: var(--gugu-content-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(16px, 5vw, var(--gugu-pad-x));
    padding-right: clamp(16px, 5vw, var(--gugu-pad-x));
}

.form-check-input:checked {
    background-color: var(--gugu-green, #3e7122) !important;
    border-color: var(--gugu-green, #3e7122) !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gugu-green, #3e7122);
    box-shadow: 0 0 0 0.2rem rgba(62, 113, 34, 0.25);
}

.text-danger {
    color: #dc3545 !important;
}

/* ============================================
   2. TOPBAR
   ============================================ */
.gugu-topbar {
    background: var(--gugu-green);
    color: #fff;
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 1031;
    height: auto;
    min-height: 32px;
    width: 100%;
}

.gugu-topbar a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.gugu-topbar a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

/* ============================================
   3. MAIN HEADER
   ============================================ */
.gugu-site-header {
    background: #fff;
    position: relative;
    z-index: 1030;
}

.gugu-header-bar {
    background: #fff;
    position: relative;
    z-index: 1029;
}

.gugu-header-inner {
    display: flex;
    align-items: start;
    justify-content: space-between;
    min-height: 88px;
    gap: 20px;
}

.gugu-brand {
    padding-top: 20px;
    flex-shrink: 0;
    line-height: 0;
    transition: opacity 0.2s;
}

.gugu-brand:hover {
    opacity: 0.85;
}

.gugu-logo-img {
    height: 80px;
    width: auto;
    display: block;
}

.gugu-header-menu {
    display: flex;
    flex: 1;
    padding-top: 10px;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.gugu-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.gugu-nav .nav-link {
    color: #222;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 10px;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 4px;
    transition: all 0.2s;
}

.gugu-nav .nav-link:hover {
    color: var(--gugu-green);
    background: transparent;
}

.gugu-search-wrap {
    flex-shrink: 0;
}

.gugu-search {
    width: 360px;
    height: 42px;
    border-radius: 21px;
    border: 1px solid #ddd;
    padding: 0 16px 0 42px;
    font-size: 14px;
    transition: all 0.2s;
    background: #fff
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.242 1.156a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/%3E%3C/svg%3E")
        no-repeat 16px center;
    margin: 0;
}

.gugu-search:focus {
    outline: none;
    border-color: var(--gugu-green);
    box-shadow: 0 0 0 3px rgba(61, 113, 33, 0.1);
}

.gugu-nav-toggle {
    display: none;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    z-index: 100;
}

.gugu-nav-toggle:hover {
    background: #f5f5f5;
    border-color: var(--gugu-green);
}

.navbar-toggler-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ============================================
   4. FOOTER
   ============================================ */
.gugu-footer {
    padding: 20px 0;
    font-size: 12px;
    margin-top: auto;
    color: var(--gugu-gray-text);
}

.gugu-footer .gugu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.gugu-footer .copyright {
    color: var(--gugu-gray-text);
    line-height: 1.4;
}

.gugu-footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.gugu-footer a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s;
    padding: 4px 8px;
}

.gugu-footer a:hover {
    color: var(--gugu-green);
    text-decoration: underline;
    opacity: 0.85;
}

.gugu-footer .separator {
    color: var(--gugu-gray-border);
    user-select: none;
}

/* ============================================
   5. BUTTONS
   ============================================ */
.gugu-btn-green {
    background: var(--gugu-green);
    border: none;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.02em;
    padding: 6px 42px;
    border-radius: 75px;
    white-space: nowrap;
    transition: all 0.2s;
}

.gugu-btn-green:hover {
    background: var(--gugu-green-dark);
    color: #fff;
}

.gugu-btn-muted {
    background: var(--gugu-btn-muted);
    border: none;
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.2s;
}

.gugu-btn-muted:hover {
    background: #c9c9c9;
}

/* Submit Button States */
#submitBtn,
button[type="submit"].form-submit-btn {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
    transition: all 0.2s ease;
}

#submitBtn:enabled,
button[type="submit"].form-submit-btn:enabled {
    background-color: var(--gugu-green-light, #3e7122);
    border-color: var(--gugu-green-light, #3e7122);
    color: white;
}

#submitBtn:enabled:hover,
button[type="submit"].form-submit-btn:enabled:hover {
    background-color: var(--gugu-green-dark, #2f5a20);
    border-color: var(--gugu-green-dark, #2f5a20);
}

#submitBtn:disabled,
button[type="submit"].form-submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* ============================================
   6. HERO & FEATURE BOXES
   ============================================ */
.gugu-hero-title {
    color: var(--gugu-green);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin: 40px 0 15px;
    line-height: 1.35;
}

.gugu-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
    border: none;
}

.gugu-feature-box {
    border: 1px solid var(--gugu-gray-border);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background: #fff;
    min-height: 220px;
}

.gugu-feature-box img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.gugu-feature-box h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #222;
}

.gugu-feature-box p {
    font-size: 12px;
    color: var(--gugu-gray-text);
    padding: 0 52px;
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   7. SECTION HEADER & BREADCRUMB
   ============================================ */
.gugu-section-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.gugu-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.gugu-section-title::before {
    content: "";
    width: 5px;
    height: 30px;
    background: var(--gugu-green);
    flex-shrink: 0;
}

.gugu-section-title h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #222;
}

.gugu-breadcrumb {
    font-size: 13px;
    color: var(--gugu-gray-text);
}

.gugu-breadcrumb a {
    color: var(--gugu-gray-text);
    text-decoration: none;
}

/* ============================================
   8. SORT & FILTER
   ============================================ */
.gugu-sort {
    position: relative;
}

.gugu-sort select {
    font-size: 13px;
    height: 32px;
    min-width: 220px;
    border: none;
    background: transparent;
    border-radius: 0;
    cursor: pointer;
    appearance: none;
    padding-right: 16px;
}

.gugu-sort::after {
    content: "▼";
    font-size: 10px;
    color: #999;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.gugu-sort select:focus {
    border-color: transparent !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.gugu-filter-bar {
    background: var(--gugu-gray-bg);
    border: none;
    border-radius: 6px 6px 0 0;
    padding: 14px 16px;
    margin-bottom: 0;
}

.gugu-filter-bar .form-select {
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 75px;
    background-color: #fff;
}

.gugu-filter-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.gugu-filter-grid .form-select {
    flex: 1 1 120px;
    max-width: 160px;
}

.gugu-filter-grid .gugu-btn-green {
    margin-left: auto;
}

.gugu-filter-grid span.px-0 {
    display: inline-flex;
    align-items: center;
    color: #999;
    font-size: 12px;
}

/* ============================================
   9. WATCH LISTING CARDS
   ============================================ */
.gugu-watch-card {
    display: flex !important;
    flex-direction: row !important;
    padding: 48px 16px !important;
    align-items: stretch !important;
    flex-wrap: nowrap !important;
    border: 1px solid #cfdcc7;
    border-left: 0;
    border-right: 0;
}

.gugu-watch-media {
    flex-shrink: 0 !important;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 172px;
    position: relative;
}

.gugu-watch-media img {
    width: 150px !important;
    height: 150px !important;
    object-fit: cover;
    border: 2px solid var(--gugu-green-border);
    border-radius: 16px 16px 0 0 !important;
    display: block;
}

.gugu-watch-btn {
    width: 150px !important;
    height: 22px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gugu-green);
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    border-radius: 0 0 16px 16px !important;
    text-decoration: none;
}

.gugu-watch-btn:hover {
    background: var(--gugu-green-dark);
    color: #fff;
}

.gugu-watch-body {
    flex: 1 !important;
    min-width: 0 !important;
    overflow: hidden !important;
    display: flex;
    padding: 0 0 0 24px;
    flex-direction: column;
    height: 172px;
    justify-content: space-between;
}

.gugu-watch-body .navbar-nav {
    list-style: none !important;
    width: 100% !important;
    margin: 0 !important;
    flex: 1;
    padding-right: 8px;
    padding-top: 16px !important;
}

.gugu-watch-body .nav-link:hover {
    color: var(--gugu-green) !important;
}

.gugu-watch-body .nav-item {
    font-size: 14px !important;
    font-weight: 500;
    color: #777 !important;
    line-height: 1.2 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}

.gugu-watch-price {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--gugu-green) !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2;
}

.gugu-watch-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: auto !important;
    padding-top: 12px !important;
    min-height: 32px;
}

.gugu-listing-seller {
    font-size: 12px;
    color: var(--gugu-gray-text);
    margin: 0 !important;
    padding: 0 !important;
}

/* Listing Row Striping */
.gugu-f .col.listing-col {
    border-top: 2px solid var(--gugu-green-border);
}
.gugu-f .col.listing-col:nth-child(odd) {
    background-color: #f8f8f8 !important;
}
.gugu-f .col.listing-col:nth-child(even) {
    background-color: #ffffff !important;
}

@media (min-width: 576px) {
    .gugu-f .col.listing-col:nth-child(4n + 1),
    .gugu-f .col.listing-col:nth-child(4n + 2) {
        background-color: #f8f8f8 !important;
    }
    .gugu-f .col.listing-col:nth-child(4n + 3),
    .gugu-f .col.listing-col:nth-child(4n + 4) {
        background-color: #ffffff !important;
    }
}

@media (min-width: 1200px) {
    .gugu-f .col.listing-col:nth-child(6n + 1),
    .gugu-f .col.listing-col:nth-child(6n + 2),
    .gugu-f .col.listing-col:nth-child(6n + 3) {
        background-color: #f8f8f8 !important;
    }
    .gugu-f .col.listing-col:nth-child(6n + 4),
    .gugu-f .col.listing-col:nth-child(6n + 5),
    .gugu-f .col.listing-col:nth-child(6n + 6) {
        background-color: #ffffff !important;
    }
}

/* ============================================
   10. DEALER LISTING CARDS
   ============================================ */
.gugu-dealer-card {
    display: flex !important;
    flex-direction: row !important;
    padding: 26px 16px !important;
    align-items: flex-start !important;
    flex-wrap: nowrap !important;
    width: 100%;
    transition: background-color 0.2s ease;
    margin: 0 !important;
    border: 1px solid #cfdcc7 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-top: 1px solid #cfdcc7 !important;
    border-bottom: none !important;
}

.gugu-dealer-media {
    flex-shrink: 0 !important;
}

.gugu-dealer-media img {
    width: 150px !important;
    height: 150px !important;
    object-fit: cover;
    border: 2px solid var(--gugu-green-border);
    border-bottom: none !important;
    border-radius: 16px 16px 0 0 !important;
    display: block;
}

.gugu-dealer-btn {
    width: 150px !important;
    height: 22px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gugu-green);
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    border-radius: 0 0 16px 16px !important;
    text-decoration: none;
}

.gugu-dealer-btn:hover {
    background: var(--gugu-green-dark);
    color: #fff;
}

.gugu-dealer-body {
    flex: 1 !important;
    min-width: 0 !important;
    overflow: hidden !important;
    display: flex;
    padding: 0 100px 0 24px;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.gugu-dealer-body .d-flex.justify-content-between {
    margin-top: auto;
}

.gugu-dealer-body
    .d-flex.justify-content-between
    .gugu-dealer-info-text:last-child {
    align-self: flex-end;
}

.gugu-dealer-body h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    padding-bottom: 3px;
    line-height: 1.2;
    color: #222;
}

.gugu-dealer-info-text {
    font-size: 13px;
    line-height: 1.2;
    color: #777;
    margin: 0 0 6px;
    padding-bottom: 3px;
}

.gugu-dealer-contact {
    font-size: 12px;
    color: var(--gugu-gray-text);
}

.gugu-dealer-map {
    width: 550px;
    height: 172px;
    object-fit: cover;
    border: 1px solid var(--gugu-gray-border);
    display: block;
}

#dealers-container .gugu-dealer-card:nth-child(odd) {
    background-color: #f8f8f8 !important;
}
#dealers-container .gugu-dealer-card:nth-child(even) {
    background-color: #ffffff !important;
}

.gugu-dealer-search {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 45%;
    max-width: 45%;
}

.gugu-dealer-search .form-select {
    width: 180px;
    flex-shrink: 0;
}

.gugu-dealer-search .form-control {
    flex: 1;
    height: 30px;
    border-radius: 75px;
    padding-right: 40px;
    background: #fff
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.242 1.156a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/%3E%3C/svg%3E")
        no-repeat calc(100% - 12px) center;
}

.gugu-dealer-claim {
    font-size: 12px;
    color: var(--gugu-gray-text);
}

.gugu-social img {
    height: 28px;
    width: auto;
    max-width: 100%;
    margin: 8px 0 12px;
}

.gugu-dealer-location {
    font-size: 12px;
    text-align: right;
    margin-top: 8px;
}

/* ============================================
   11. PRODUCT & DEALER GALLERY
   ============================================ */
.gugu-product-gallery,
.gugu-dealer-gallery {
    display: flex;
    gap: 20px;
}

.gugu-product-gallery .main-img,
.gugu-dealer-gallery .main-img {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #f8f8f8;
    border: 2px solid var(--gugu-green);
    border-radius: 10px;
}

.gugu-product-gallery .main-img,
.gugu-dealer-gallery .main-img {
    border-radius: 45px;
}

.gugu-product-gallery .thumbs,
.gugu-dealer-gallery .thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gugu-product-gallery .thumb,
.gugu-dealer-gallery .thumb {
    width: 110px;
    height: 110px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 8px;
}

.gugu-product-gallery .thumb.active,
.gugu-product-gallery .thumb:hover,
.gugu-dealer-gallery .thumb.active,
.gugu-dealer-gallery .thumb:hover {
    border-color: var(--gugu-green);
}

/* ============================================
   12. SPECS & DETAILS
   ============================================ */
.gugu-specs dt {
    font-weight: 700;
    font-size: 14px;
}

.gugu-specs dd {
    font-size: 14px;
    color: var(--gugu-gray-text);
    margin-bottom: 8px;
}

/* ============================================
   13. PAGINATION
   ============================================ */
.gugu-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    font-size: 14px;
}

.pagination {
    margin-bottom: 0;
}

.pagination .page-item.active .page-link {
    background: var(--gugu-green);
    color: #fff;
    border-color: var(--gugu-green);
}

.pagination .page-link {
    color: var(--gugu-green);
    font-size: 14px;
    min-width: 36px;
    text-align: center;
    border: none;
    background: transparent;
    padding: 8px 12px;
}

.pagination .page-item.disabled .page-link {
    color: #999;
}

.pagination-wrapper2 {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--gugu-gray-border);
}

/* ============================================
   14. DASHBOARD STYLES
   ============================================ */
.gugu-dashboard-wrap {
    padding: 32px 0 48px;
}

.gugu-dashboard-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: start;
}

.gugu-dashboard-sidebar {
    border: 1px solid var(--gugu-gray-border);
    border-radius: 8px;
    padding: 24px 20px;
    background: #fff;
}

.gugu-dashboard-sidebar h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.gugu-dashboard-nav .nav-link {
    color: #333;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    text-decoration: none;
}

.gugu-dashboard-nav .nav-link img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.gugu-dashboard-nav .nav-link:hover,
.gugu-dashboard-nav .nav-link.active {
    color: var(--gugu-green);
    font-weight: 700;
}

.gugu-dashboard-main {
    border: 1px solid var(--gugu-gray-border);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.gugu-dashboard-main h1 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}

.gugu-valid-check {
    color: #28a745;
}

.gugu-valid-x {
    color: #dc3545;
    font-size: 13px;
}

.main-teg {
    font-size: 13px;
}

.main-teg h5 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.box-img {
    min-height: 150px;
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.btn-bg {
    background-color: #f8f8f8 !important;
    border: 1px solid #ddd;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 4px;
}

/* ============================================
   15. FORM STYLES & UPLOAD ZONE
   ============================================ */
.gugu-form-label-col {
    min-width: 120px;
    font-weight: 500;
    font-size: 14px;
}

.gugu-input-rounded {
    border-radius: 8px;
    background: #f5f5f5;
    border: 1px solid #dddddd;
    height: 40px;
    font-size: 14px;
}

.gugu-upload-zone {
    border: 2px dashed #cccccc;
    border-radius: 8px;
    padding: 32px 20px;
    text-align: center;
    background: #fafafa;
}

.gugu-thumb-slot {
    position: relative;
    aspect-ratio: 1;
    background: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #888;
    border: 1px solid var(--gugu-gray-border);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
}

/* Image Upload & Preview */
.image-container {
    position: relative;
    cursor: pointer;
}

.image-container .delete-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.image-container .delete-btn:hover {
    background: rgb(220, 53, 69);
    transform: scale(1.1);
}

.image-container .main-badge {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: rgba(62, 113, 34, 0.9);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
}

/* Field Error States */
.field-error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* ============================================
   16. FORM VALIDATION & PASSWORD REQUIREMENTS
   ============================================ */
.password-requirements {
    font-size: 0.85rem;
    margin-top: -0.5rem;
}

.requirement {
    margin-bottom: 4px;
    transition: color 0.2s;
}

.req-icon {
    display: inline-block;
    width: 20px;
    text-align: center;
    font-weight: normal;
}

.req-text {
    font-weight: 600;
}

.requirement.valid .req-icon {
    color: var(--gugu-green, #198754) !important;
}

.requirement.invalid .req-icon {
    color: #dc3545 !important;
}

#confirm-match {
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

#charCount {
    font-family: monospace;
}

#charCount.warning {
    color: #dc3545;
    font-weight: bold;
}

/* ============================================
   17. REGISTER & SOCIAL LINKS
   ============================================ */
.gugu-register-choice {
    max-width: 480px;
    margin: 80px auto;
    text-align: center;
    padding: 0 16px;
}

.gugu-register-choice h1 {
    font-size: 16px;
    font-weight: 700;
}

.gugu-register-choice p {
    font-size: 13px;
    color: var(--gugu-gray-text);
}

.gugu-register-choice .btn {
    width: 100%;
    max-width: 360px;
    margin-bottom: 12px;
}

.gugu-social-link {
    color: var(--gugu-gray-text);
    text-decoration: none;
    font-size: 12px;
    margin-left: 4px;
}

.gugu-social-link:hover {
    color: var(--gugu-green);
    text-decoration: underline;
}

.gugu-section-cta {
    text-align: center;
    margin: 20px 0 48px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.gugu-divider {
    margin: 16px 0;
    border: 0;
    border-top: 1px solid var(--gugu-green-dark);
}

.gugu-link-green {
    color: var(--gugu-green);
    font-weight: 700;
    text-decoration: none;
}

.gugu-link-green:hover {
    color: var(--gugu-green-dark);
    text-decoration: underline;
}

.ri-expand-up-down-fill {
    font-size: 14px;
}

/* ============================================
   18. UTILITY CLASSES
   ============================================ */
.col-last-row-single {
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

.col-last-row-double {
    flex: 0 0 50% !important;
    max-width: 50% !important;
}

/* ============================================
   19. RESPONSIVE MEDIA QUERIES
   ============================================ */

/* Tablet and below (max-width: 991.98px) */
@media (max-width: 991.98px) {
    .gugu-header-inner {
        min-height: 64px;
    }

    .gugu-nav-toggle {
        display: block !important;
    }

    body.menu-open {
        overflow: hidden;
    }

    .menu-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        display: none;
    }

    .gugu-header-menu {
        position: fixed;
        top: var(--topbar-height, 32px);
        right: -100%;
        width: 100%;
        max-width: 100%;
        height: calc(100vh - var(--topbar-height, 32px));
        background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
        display: flex !important;
        justify-content: flex-start;
        flex-direction: column;
        padding: 80px 28px 40px;
        overflow-y: auto;
        z-index: 99999;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: auto;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

    .gugu-header-menu.show {
        right: 0;
    }

    .gugu-header-menu::before {
        content: "Menu";
        position: absolute;
        top: 30px;
        left: 28px;
        font-size: 24px;
        font-weight: 700;
        color: var(--gugu-green);
        letter-spacing: -0.5px;
        z-index: 100000;
    }

    .gugu-nav {
        flex-direction: column;
        width: 100%;
        gap: 8px;
        margin-top: 20px;
    }

    .gugu-nav .nav-link {
        padding: 16px 0;
        font-size: 18px;
        font-weight: 600;
        border-bottom: 1px solid #e5e5e5;
        position: relative;
        z-index: 100000;
        pointer-events: auto;
    }

    .gugu-nav .nav-link:before {
        content: "→";
        margin-right: 12px;
        opacity: 0;
        transition: all 0.2s;
        color: var(--gugu-green);
    }

    .gugu-nav .nav-link:hover {
        color: var(--gugu-green);
        padding-left: 8px;
    }

    .gugu-nav .nav-link:hover:before {
        opacity: 1;
        margin-right: 12px;
    }

    .gugu-nav .nav-link:last-child {
        border-bottom: none;
    }

    .gugu-search-wrap {
        width: 100%;
        margin-top: 30px;
        position: relative;
        z-index: 100000;
    }

    .gugu-search {
        width: 100%;
        border-radius: 12px;
        height: 48px;
        font-size: 16px;
    }

    .menu-close-btn {
        position: absolute;
        top: 24px;
        right: 24px;
        width: 44px;
        height: 44px;
        z-index: 100001;
        border: none;
        background: #f0f0f0;
        cursor: pointer;
        border-radius: 50%;
        font-size: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
        color: #333;
    }

    .menu-close-btn:hover {
        background: #e5e5e5;
        transform: rotate(90deg);
    }

    .gugu-site-header {
        z-index: 1030;
    }

    body.menu-open .gugu-site-header {
        z-index: 9997;
    }

    .gugu-topbar-links {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .gugu-topbar-links .mx-1 {
        display: none;
    }

    .gugu-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .gugu-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .gugu-login-divider {
        border-right: none;
        border-bottom: 1px solid var(--gugu-gray-border);
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
}

/* Medium tablets (576px - 991.98px) */
@media (min-width: 576px) and (max-width: 991.98px) {
    .gugu-header-menu {
        width: 70%;
        max-width: 400px;
    }
}

/* Mobile landscape (max-width: 676px) */
@media (max-width: 676px) {
    .gugu-dealer-card {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 16px !important;
    }

    .gugu-dealer-media {
        width: 140px !important;
        flex-shrink: 0 !important;
        margin-bottom: 0 !important;
    }

    .gugu-dealer-media img {
        width: 140px !important;
        height: 140px !important;
    }

    .gugu-dealer-btn {
        width: 140px !important;
        font-size: 10px !important;
    }

    .gugu-dealer-body {
        flex: 1 !important;
        min-width: 180px !important;
        text-align: left !important;
    }
}

/* Mobile (max-width: 575.98px) */
@media (max-width: 575.98px) {
    .gugu-topbar .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 8px;
    }

    .gugu-header-menu {
        padding: 80px 20px 30px;
    }

    .gugu-nav .nav-link {
        font-size: 16px;
        padding: 14px 0;
    }

    .menu-close-btn {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .gugu-header-menu::before {
        top: 28px;
        left: 20px;
        font-size: 20px;
    }

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

/* Small mobile (max-width: 576px) */
@media (max-width: 576px) {
    .gugu-watch-card {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 16px !important;
    }

    .gugu-watch-media {
        width: 120px !important;
        flex-shrink: 0 !important;
        margin-bottom: 0 !important;
    }

    .gugu-watch-media img {
        width: 120px !important;
        height: 120px !important;
    }

    .gugu-watch-btn {
        width: 120px !important;
    }

    .gugu-watch-body {
        flex: 1 !important;
        min-width: 160px !important;
        text-align: left !important;
    }

    .gugu-watch-body .navbar-nav {
        text-align: left !important;
    }

    .gugu-watch-footer {
        justify-content: space-between !important;
    }
    .gugu-dealer-gallery,
    .gugu-product-gallery {
        flex-direction: column;
        align-items: center;
    }

    .gugu-dealer-gallery .thumbs,
    .gugu-product-gallery .thumbs {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .gugu-dealer-gallery .thumb,
    .gugu-product-gallery .thumb {
        width: 70px;
        height: 70px;
    }
}

/* Extra small mobile (max-width: 480px) */
@media (max-width: 480px) {
    .gugu-footer .footer-links {
        gap: 2px;
    }

    .gugu-footer a {
        padding: 6px 6px;
        font-size: 11px;
    }
}

/* Ultra small mobile (max-width: 400px) */
@media (max-width: 400px) {
    .gugu-watch-card {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 32px 16px !important;
    }

    .gugu-watch-media {
        margin-bottom: 16px !important;
        width: auto !important;
    }

    .gugu-watch-media img {
        width: 120px !important;
        height: 120px !important;
        margin: 0 auto;
    }

    .gugu-watch-btn {
        width: 120px !important;
        margin: 0 auto;
    }

    .gugu-watch-body {
        text-align: center !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .gugu-watch-footer {
        justify-content: center !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .gugu-dealer-card {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 32px 16px !important;
    }

    .gugu-dealer-media {
        margin-bottom: 16px !important;
        width: auto !important;
    }

    .gugu-dealer-media img {
        width: 140px !important;
        height: 140px !important;
        margin: 0 auto;
    }

    .gugu-dealer-btn {
        width: 140px !important;
        margin: 0 auto;
    }

    .gugu-dealer-body {
        text-align: center !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .gugu-dealer-body h3,
    .gugu-dealer-info-text {
        text-align: center !important;
    }

    .gugu-dealer-body .d-flex.justify-content-between {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }

    .gugu-dealer-body .d-flex.justify-content-between > div {
        width: 100%;
        text-align: center;
    }

    .gugu-dealer-map {
        display: none !important;
    }

    .gugu-hero-title {
        font-size: 16px !important;
        text-align: center !important;
        margin: 20px 0 10px !important;
    }

    .gugu-feature-box {
        padding: 20px 15px !important;
        min-height: auto !important;
    }

    .gugu-feature-box img {
        width: 80px !important;
        height: 80px !important;
    }

    .gugu-feature-box p br {
        display: none;
    }

    .gugu-section-row {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .gugu-section-title {
        flex-wrap: wrap !important;
    }

    .gugu-sort {
        width: 100% !important;
    }

    .gugu-sort select {
        width: 100% !important;
        min-width: auto !important;
    }

    .pagination {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .page-link {
        padding: 6px 10px !important;
        font-size: 12px !important;
    }
}

/* Desktop (min-width: 992px) */
@media (min-width: 992px) {
    .gugu-header-menu {
        display: flex !important;
        position: static;
        transform: none;
        background: transparent;
        box-shadow: none;
        height: auto;
        overflow: visible;
    }

    .menu-close-btn {
        display: none !important;
    }
}

/* Desktop large (max-width: 1200px) */
@media (max-width: 1200px) {
    .gugu-dealer-map {
        max-width: 350px;
    }

    .gugu-dealer-body {
        padding: 0 50px 0 24px;
    }
}

/* Desktop medium (max-width: 992px) */
@media (max-width: 992px) {
    .gugu-dealer-map {
        max-width: 250px;
    }

    .gugu-dealer-body {
        padding: 0 30px 0 24px;
    }
}

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .gugu-footer .gugu-container {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .gugu-footer .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .gugu-dealer-map {
        display: none;
    }

    .gugu-dealer-body {
        padding: 0 0 0 24px;
    }
    .gugu-dealer-gallery .thumb,
    .gugu-product-gallery .thumb {
        width: 60px;
        height: 60px;
    }
}
