/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    color: #fff;
    z-index: 1000;
    padding: 0 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* ===== LOGO ===== */
.header .logo {
    display: flex;
    align-items: center;
}

.header .logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

/* ===== NAVIGATION ===== */
.header .nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 5px;
}

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

.header .nav-menu > li > a {
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.header .nav-menu > li > a:hover {
    background: rgba(255,255,255,0.1);
}

.header .nav-menu > li > a .arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.header .nav-menu > li:hover > a .arrow {
    transform: rotate(180deg);
}

/* ===== DROPDOWN ===== */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    min-width: 260px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 12px 0;
    z-index: 100;
}

.nav-menu > li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    color: #333;
    text-decoration: none;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
    color: #e63946;
    padding-left: 30px;
}

.dropdown-menu li a .drop-img {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #eee;
    transition: border-color 0.3s;
}

.dropdown-menu li a:hover .drop-img {
    border-color: #e63946;
}

/* ===== RIGHT SECTION: Search Icon, Cart, Login ===== */
.header .header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header .header-right .search-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.header .header-right .search-toggle:hover {
    background: #e63946;
    transform: translateY(-2px);
}

.header .header-right .icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.header .header-right .icon-btn:hover {
    background: #e63946;
    transform: translateY(-2px);
}

..header .header-right .icon-btn .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e63946;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== MY ACCOUNT DROPDOWN ===== */
.account-dropdown {
    position: relative;
}

.account-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.account-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: #e63946;
}

.account-btn-guest {
    padding: 9px 18px;
    background: rgba(255,255,255,0.1);
}

.account-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.account-avatar-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e63946;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.account-name {
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.account-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.account-dropdown:hover .account-arrow {
    transform: rotate(180deg);
}

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

.account-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    z-index: 200;
}

.account-menu-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.account-menu-header img,
.am-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.am-avatar-placeholder {
    background: #e63946;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.account-menu-header strong {
    display: block;
    font-size: 14px;
    color: #222;
    margin-bottom: 2px;
}

.account-menu-header span {
    display: block;
    font-size: 12px;
    color: #999;
}

.account-menu-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 4px 0;
}

.account-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.account-menu a:hover {
    background: #f5f5f5;
    color: #e63946;
    padding-left: 24px;
}

.account-menu a i {
    width: 18px;
    text-align: center;
    font-size: 15px;
    color: #999;
    transition: color 0.2s;
}

.account-menu a:hover i {
    color: #e63946;
}

.account-menu a.logout-link {
    color: #e63946;
}

.account-menu a.logout-link i {
    color: #e63946;
}

/* Remove old login-btn styles */
.header .header-right .login-btn {
    display: none;
}

/* ===== ADD TO CART BUTTON ===== */
.add-cart-btn {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 9px 0;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.add-cart-btn:hover {
    background: linear-gradient(135deg, #c1121f, #a00d1a);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230,57,70,0.3);
}

.add-cart-btn.added {
    background: #2d6a4f;
    pointer-events: none;
}

/* Flying cart animation */
.cart-fly {
    position: fixed;
    z-index: 99999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    pointer-events: none;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== CART PAGE ===== */
.cart-section {
    padding: 60px 40px 80px;
    min-height: 400px;
}

.cart-container {
    max-width: 900px;
    margin: 0 auto;
}

.cart-empty {
    text-align: center;
    padding: 80px 20px;
}

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

.cart-empty h2 {
    font-size: 26px;
    color: #444;
    margin-bottom: 10px;
}

.cart-empty p {
    color: #999;
    margin-bottom: 24px;
    font-size: 15px;
}

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

.cart-header h2 {
    font-size: 24px;
    font-weight: 700;
}

.cart-clear-btn {
    padding: 8px 20px;
    border: 2px solid #e63946;
    background: transparent;
    color: #e63946;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cart-clear-btn:hover {
    background: #e63946;
    color: #fff;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 16px;
    padding: 18px 22px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: all 0.3s;
}

.cart-item:hover {
    border-color: #e63946;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}

.cart-item-info p {
    font-size: 13px;
    color: #888;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-qty button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #e8e8e8;
    background: #fff;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #555;
}

.cart-item-qty button:hover {
    border-color: #e63946;
    color: #e63946;
}

.cart-item-qty span {
    font-size: 16px;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
    color: #222;
}

.cart-item-price {
    font-size: 18px;
    font-weight: 800;
    color: #e63946;
    min-width: 80px;
    text-align: right;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: #ddd;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.cart-item-remove:hover {
    color: #e63946;
}

.cart-footer {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.cart-total-label {
    font-size: 16px;
    color: #888;
}

.cart-total-amount {
    font-size: 28px;
    font-weight: 800;
    color: #e63946;
}

.cart-checkout-btn {
    padding: 14px 36px;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 5px 20px rgba(230,57,70,0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cart-checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230,57,70,0.3);
}

@media (max-width: 768px) {
    .cart-item {
        flex-wrap: wrap;
        gap: 14px;
        padding: 14px 16px;
    }

    .cart-item-img {
        width: 60px;
        height: 60px;
    }

    .cart-item-price {
        min-width: auto;
        font-size: 16px;
    }

    .cart-footer {
        flex-wrap: wrap;
        gap: 16px;
        padding: 18px 20px;
    }

    .cart-section {
        padding: 40px 16px 60px;
    }
}

/* ===== AUTH PAGES (Login / Signup) ===== */
.auth-section {
    padding: 60px 20px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    min-height: 500px;
}

.auth-box {
    width: 100%;
    max-width: 450px;
    background: #fff;
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 6px;
}

.auth-header p {
    font-size: 15px;
    color: #888;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.auth-form .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

.auth-form .form-group label i {
    color: #e63946;
    font-size: 14px;
    width: 16px;
}

.auth-form input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

.auth-form input:focus {
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230,57,70,0.08);
}

.auth-form input::placeholder {
    color: #bbb;
}

.auth-submit {
    width: 100%;
    padding: 15px 0;
    margin-top: 6px;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(230,57,70,0.2);
}

.auth-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230,57,70,0.3);
}

.auth-footer {
    text-align: center;
    margin-top: 22px;
    font-size: 14px;
    color: #888;
}

.auth-footer a {
    color: #e63946;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.auth-footer a:hover {
    color: #c1121f;
}

/* ===== ADVANCED SEARCH OVERLAY ===== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 20px 40px;
    backdrop-filter: blur(6px);
}

.search-overlay.active {
    display: flex;
}

.search-overlay-inner {
    width: 100%;
    max-width: 680px;
    position: relative;
}

.search-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
    opacity: 0.7;
}

.search-close:hover {
    color: #e63946;
    opacity: 1;
}

.search-input-wrap {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: box-shadow 0.3s;
}

.search-input-wrap:focus-within {
    box-shadow: 0 10px 60px rgba(230,57,70,0.2);
}

.search-input-icon {
    padding: 0 0 0 22px;
    color: #999;
    font-size: 18px;
}

.search-input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    padding: 18px 16px;
    font-size: 16px;
    color: #222;
    background: transparent;
    min-width: 0;
}

.search-input-wrap input::placeholder {
    color: #bbb;
}

.search-go {
    background: #e63946;
    border: none;
    color: #fff;
    padding: 18px 24px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
    flex-shrink: 0;
}

.search-go:hover {
    background: #c1121f;
}

/* Search results (live suggestions) */
.search-results {
    display: none;
    background: #fff;
    border-radius: 20px;
    margin-top: 16px;
    padding: 8px 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    max-height: 400px;
    overflow-y: auto;
}

.search-results.active {
    display: block;
}

.search-results .result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
}

.search-results .result-item:hover {
    background: #f5f5f5;
}

.search-results .result-item img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.search-results .result-item .result-info {
    flex: 1;
    min-width: 0;
}

.search-results .result-item .result-info strong {
    display: block;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-results .result-item .result-info span {
    font-size: 13px;
    color: #e63946;
    font-weight: 600;
}

.search-results .result-item .result-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 10px;
    text-transform: uppercase;
}

.result-badge.trending {
    background: #eef0ff;
    color: #4361ee;
}

.result-badge.hot {
    background: #ffe8e8;
    color: #e63946;
}

/* Search default (trending/hot suggestions) */
.search-default {
    margin-top: 30px;
}

.search-default .search-popular {
    margin-bottom: 28px;
}

.search-default .search-popular:last-child {
    margin-bottom: 0;
}

.search-popular h4 {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-popular h4 i {
    color: #e63946;
}

.search-popular-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.search-popular-track::-webkit-scrollbar {
    display: none;
}

.search-popular-item {
    flex: 0 0 auto;
    width: 155px;
    background: rgba(255,255,255,0.08);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.06);
}

.search-popular-item:hover {
    transform: translateY(-3px);
    border-color: #e63946;
    box-shadow: 0 8px 25px rgba(230,57,70,0.15);
}

.search-popular-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.search-popular-item div {
    padding: 10px 12px 12px;
}

.search-popular-item strong {
    display: block;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.search-popular-item span {
    font-size: 14px;
    font-weight: 700;
    color: #e63946;
}

@media (max-width: 576px) {
    .search-overlay {
        padding: 80px 14px 30px;
    }

    .search-input-wrap input {
        font-size: 15px;
        padding: 15px 12px;
    }

    .search-go {
        padding: 15px 18px;
        font-size: 16px;
    }

    .search-popular-item {
        width: 130px;
    }

    .search-popular-item img {
        height: 80px;
    }

    .search-popular-item strong {
        font-size: 12px;
    }
}

/* ===== BODY PADDING (so content isn't behind fixed header) ===== */
main {
    margin-top: 80px;
    overflow-x: hidden;
}

/* ===== HERO BANNER SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 400px;
    max-height: 700px;
}

.slider-container .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slider-container .slide.active {
    opacity: 1;
    visibility: visible;
}

.slider-container .slide a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.slider-container .slide picture,
.slider-container .slide picture img,
.slider-container .slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 40px 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
}

.slide-overlay h2 {
    font-size: 32px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Fallback banner */
.fallback-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #1a1a2e 50%, #e63946 100%);
    color: #fff;
    text-align: center;
    padding: 40px;
}

.fallback-banner h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.fallback-banner p {
    font-size: 20px;
    opacity: 0.9;
}

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.hero-slider:hover .slider-arrow {
    opacity: 1;
}

.slider-arrow:hover {
    background: #e63946;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: #e63946;
    transform: scale(1.2);
}

.slider-dots .dot:hover {
    background: #e63946;
}

@media (max-width: 768px) {
    .slider-container {
        height: 50vh;
        min-height: 280px;
        max-height: 450px;
    }

    .slide-overlay {
        padding: 40px 20px 24px;
    }

    .slide-overlay h2 {
        font-size: 22px;
    }

    .fallback-banner h1 {
        font-size: 28px;
    }

    .fallback-banner p {
        font-size: 16px;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 16px;
        opacity: 1;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 70px 40px;
    background: #fafafa;
}

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

.feature-item {
    background: #fff;
    border-radius: 16px;
    padding: 40px 28px 36px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e63946, #ff6b6b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(230,57,70,0.12);
    border-color: #e63946;
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fce4e4, #fef0f0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #e63946;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .features-section {
        padding: 50px 20px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .features-section {
        padding: 40px 16px;
    }

    .feature-item {
        padding: 30px 20px 28px;
    }

    .feature-item h3 {
        font-size: 18px;
    }
}

/* ===== DEALS CATEGORIES SECTION ===== */
.categories-section {
    padding: 70px 40px;
    background: #fff;
}

.categories-header {
    text-align: center;
    margin-bottom: 45px;
}

.categories-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #111;
    position: relative;
    display: inline-block;
}

.categories-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: #e63946;
}

.categories-header p {
    margin-top: 20px;
    font-size: 16px;
    color: #888;
}

.categories-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.categories-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 20px;
    flex: 1;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.categories-track::-webkit-scrollbar {
    display: none;
}

.cat-card {
    flex: 0 0 auto;
    width: 220px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border: 1px solid #f0f0f0;
    transition: all 0.35s ease;
}

.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(230,57,70,0.15);
    border-color: #e63946;
}

.cat-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.cat-img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.cat-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.15));
}

.cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cat-card:hover .cat-img-wrap img {
    transform: scale(1.1);
}

.cat-card h3 {
    padding: 16px 18px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    text-align: center;
    position: relative;
}

.cat-card h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #e63946;
    border-radius: 2px;
}

.cat-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #eee;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    z-index: 2;
}

.cat-arrow:hover {
    background: #e63946;
    border-color: #e63946;
    color: #fff;
    box-shadow: 0 5px 18px rgba(230,57,70,0.25);
}

.cat-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 768px) {
    .categories-section {
        padding: 50px 16px;
    }

    .categories-header h2 {
        font-size: 26px;
    }

    .cat-card {
        width: 170px;
    }

    .cat-img-wrap {
        height: 140px;
    }

    .cat-card h3 {
        font-size: 14px;
        padding: 14px 14px 16px;
    }

    .cat-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* ===== ABOUT US SECTION ===== */
.about-section {
    padding: 80px 40px;
    background: #fafafa;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid #e63946;
    border-radius: 20px;
    transform: translate(12px, 12px);
    z-index: -1;
    opacity: 0.3;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: #e63946;
}

.about-content h2 span {
    color: #e63946;
}

.about-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 14px 34px;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.35s ease;
    box-shadow: 0 5px 20px rgba(230,57,70,0.25);
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230,57,70,0.35);
}

.about-btn i {
    transition: transform 0.3s ease;
}

.about-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .about-container {
        gap: 40px;
    }

    .about-image img {
        height: 350px;
    }

    .about-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 20px;
    }

    .about-container {
        flex-direction: column;
        gap: 30px;
    }

    .about-image {
        width: 100%;
    }

    .about-image img {
        height: 280px;
    }

    .about-content h2 {
        font-size: 26px;
    }

    .about-content p {
        font-size: 15px;
    }

    .about-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

/* ===== WEDDING DESTINATION SECTION ===== */
.wedding-section {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0a0a 50%, #2d0a0a 100%);
}

.wedding-section .categories-header h2 {
    color: #fff;
}

.wedding-section .categories-header h2::after {
    background: linear-gradient(90deg, #d4a853, #f5d68e);
}

.wedding-section .categories-header p {
    color: rgba(255,255,255,0.6);
}

.wedding-card {
    background: #1a1a1a;
    border-color: #333;
}

.wedding-card:hover {
    border-color: #d4a853;
    box-shadow: 0 12px 40px rgba(212,168,83,0.2);
}

.wedding-card h3 {
    color: #f0e6d3;
}

.wedding-card h3::before {
    background: linear-gradient(90deg, #d4a853, #f5d68e);
}

.wedding-section .cat-arrow {
    background: #1a1a1a;
    border-color: #333;
    color: #f0e6d3;
}

.wedding-section .cat-arrow:hover {
    background: #d4a853;
    border-color: #d4a853;
    color: #111;
    box-shadow: 0 5px 18px rgba(212,168,83,0.3);
}

/* ===== TRENDING & HOT DEALS SECTION ===== */
.deals-section {
    padding: 70px 40px;
    background: #fff;
}

.hot-deals-section {
    background: #fff8f8;
}

.deals-header {
    text-align: center;
    margin-bottom: 45px;
}

.deals-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #111;
    position: relative;
    display: inline-block;
}

.deals-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: #e63946;
}

.deals-header h2 span {
    color: #e63946;
}

.deals-header p {
    margin-top: 20px;
    font-size: 16px;
    color: #888;
}

.deals-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.deals-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 20px;
    flex: 1;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.deals-track::-webkit-scrollbar {
    display: none;
}

.deal-card {
    flex: 0 0 auto;
    width: 260px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border: 1px solid #f0f0f0;
    transition: all 0.35s ease;
}

.deal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(230,57,70,0.12);
    border-color: #e63946;
}

.deal-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.deal-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.deal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.deal-card:hover .deal-img-wrap img {
    transform: scale(1.08);
}

.deal-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.trending-badge {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    color: #fff;
}

.hot-badge {
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
}

.deal-info {
    padding: 18px 18px 22px;
}

.deal-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.deal-location {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.deal-location i {
    color: #e63946;
    font-size: 12px;
}

.deal-pricing {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.deal-price {
    font-size: 20px;
    font-weight: 800;
    color: #e63946;
}

.deal-original {
    font-size: 14px;
    color: #aaa;
    text-decoration: line-through;
}

.deal-discount {
    font-size: 12px;
    font-weight: 700;
    color: #2d6a4f;
    background: #e8f5e9;
    padding: 3px 10px;
    border-radius: 12px;
}

.hot-card .deal-discount {
    color: #e63946;
    background: #ffe8e8;
}

.deal-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #eee;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    z-index: 2;
}

.deal-arrow:hover {
    background: #e63946;
    border-color: #e63946;
    color: #fff;
    box-shadow: 0 5px 18px rgba(230,57,70,0.25);
}

.deal-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 768px) {
    .deals-section {
        padding: 50px 16px;
    }

    .deals-header h2 {
        font-size: 26px;
    }

    .deal-card {
        width: 220px;
    }

    .deal-img-wrap {
        height: 180px;
    }

    .deal-info h3 {
        font-size: 14px;
    }

    .deal-price {
        font-size: 18px;
    }

    .deal-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* ===== SPONSORED DEALS SECTION ===== */
.sponsor-section {
    padding: 70px 40px;
    background: linear-gradient(135deg, #0f0c29, #1a1040, #24243e);
    position: relative;
    overflow: hidden;
}

.sponsor-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,215,0,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.sponsor-header {
    text-align: center;
    margin-bottom: 45px;
}

.sponsor-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    position: relative;
    display: inline-block;
}

.sponsor-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #f5d68e, #d4a853);
}

.sponsor-header h2 span {
    background: linear-gradient(135deg, #f5d68e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sponsor-header p {
    margin-top: 20px;
    font-size: 16px;
    color: rgba(255,255,255,0.5);
}

.sponsor-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sponsor-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 20px;
    flex: 1;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.sponsor-track::-webkit-scrollbar {
    display: none;
}

.sponsor-card {
    flex: 0 0 auto;
    width: 260px;
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.35s ease;
    position: relative;
    backdrop-filter: blur(4px);
}

.sponsor-card:hover {
    transform: translateY(-6px);
    border-color: #ffd700;
    box-shadow: 0 12px 40px rgba(255,215,0,0.15);
}

.sponsor-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.sponsor-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.sponsor-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sponsor-card:hover .sponsor-img-wrap img {
    transform: scale(1.08);
}

.sponsor-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffd700, #f5a623);
    color: #111;
    z-index: 2;
}

.sponsor-info {
    padding: 18px 18px 22px;
}

.sponsor-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #f0e6d3;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sponsor-card .deal-location {
    color: rgba(255,255,255,0.5);
}

.sponsor-card .deal-location i {
    color: #ffd700;
}

.sponsor-card .deal-price {
    color: #ffd700;
}

.sponsor-card .deal-original {
    color: rgba(255,255,255,0.3);
}

.sponsor-discount {
    font-size: 12px;
    font-weight: 700;
    color: #ffd700;
    background: rgba(255,215,0,0.15);
    padding: 3px 10px;
    border-radius: 12px;
}

.sponsor-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.sponsor-arrow:hover {
    background: #ffd700;
    border-color: #ffd700;
    color: #111;
    box-shadow: 0 5px 18px rgba(255,215,0,0.3);
}

.sponsor-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 768px) {
    .sponsor-section {
        padding: 50px 16px;
    }

    .sponsor-header h2 {
        font-size: 26px;
    }

    .sponsor-card {
        width: 220px;
    }

    .sponsor-img-wrap {
        height: 180px;
    }

    .sponsor-info h3 {
        font-size: 14px;
    }

    .sponsor-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* ===== REAL ESTATE SECTION ===== */
.realestate-section {
    padding: 70px 40px;
    background: linear-gradient(135deg, #f8f9ff, #eef1ff);
}

.realestate-header {
    text-align: center;
    margin-bottom: 45px;
}

.realestate-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #111;
    position: relative;
    display: inline-block;
}

.realestate-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #4361ee, #3a0ca3);
}

.realestate-header h2 span {
    color: #4361ee;
}

.realestate-header p {
    margin-top: 20px;
    font-size: 16px;
    color: #888;
}

.realestate-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.realestate-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 20px;
    flex: 1;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.realestate-track::-webkit-scrollbar {
    display: none;
}

.realestate-card {
    flex: 0 0 auto;
    width: 320px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.35s ease;
}

.realestate-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(67,97,238,0.12);
    border-color: #4361ee;
}

.realestate-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.realestate-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.realestate-card:hover .realestate-img-wrap img {
    transform: scale(1.08);
}

.realestate-info {
    padding: 20px 22px 24px;
}

.realestate-info h3 {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.realestate-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 16px;
}

.realestate-inquiry-btn {
    padding: 10px 22px;
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.realestate-inquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(67,97,238,0.3);
}

.realestate-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #eee;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    z-index: 2;
}

.realestate-arrow:hover {
    background: #4361ee;
    border-color: #4361ee;
    color: #fff;
    box-shadow: 0 5px 18px rgba(67,97,238,0.25);
}

.realestate-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 768px) {
    .realestate-section {
        padding: 50px 16px;
    }

    .realestate-header h2 {
        font-size: 26px;
    }

    .realestate-card {
        width: 260px;
    }

    .realestate-img-wrap {
        height: 160px;
    }

    .realestate-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 80px 40px 70px;
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #111;
    position: relative;
    display: inline-block;
}

.testimonials-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: #e63946;
}

.testimonials-header p {
    margin-top: 20px;
    font-size: 16px;
    color: #888;
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 30px;
    flex: 1;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 auto;
    width: 380px;
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px 30px;
    box-shadow: 0 8px 35px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.35s ease;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 80px;
    line-height: 1;
    color: #e63946;
    opacity: 0.08;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(230,57,70,0.08);
    border-color: #e63946;
}

.testimonial-stars {
    color: #f5a623;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 22px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid #f0f0f0;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid #f0f0f0;
    transition: border-color 0.3s;
}

.testimonial-card:hover .testimonial-author img {
    border-color: #e63946;
}

.testimonial-author h4 {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 13px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-author span::before {
    content: '\2713';
    display: inline-block;
    color: #2d6a4f;
    font-weight: 700;
    font-size: 12px;
}

.testimonial-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #eee;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    z-index: 2;
}

.testimonial-arrow:hover {
    background: #e63946;
    border-color: #e63946;
    color: #fff;
    box-shadow: 0 5px 18px rgba(230,57,70,0.25);
}

.testimonial-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
}

.testimonial-dots .tdot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .tdot.active {
    background: #e63946;
    transform: scale(1.2);
}

.testimonial-dots .tdot:hover {
    background: #e63946;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 16px 40px;
    }

    .testimonials-header h2 {
        font-size: 26px;
    }

    .testimonial-card {
        width: 300px;
        padding: 25px 22px 22px;
    }

    .testimonial-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #0d0d0d;
    color: #ccc;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e63946, #ff6b6b, #e63946);
    background-size: 200% 100%;
    animation: footerGradient 4s linear infinite;
}

@keyframes footerGradient {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1.3fr;
    gap: 40px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
}

.brand-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #999;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-social a:hover {
    background: #e63946;
    color: #fff;
    border-color: #e63946;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: #e63946;
    border-radius: 2px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a:hover {
    color: #e63946;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 14px;
}

.footer-contact li i {
    color: #e63946;
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.footer-contact li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact li a:hover {
    color: #e63946;
}

.subscribe-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #999;
    margin-bottom: 18px;
}

.subscribe-form {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.06);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: border-color 0.3s;
}

.subscribe-form:focus-within {
    border-color: #e63946;
}

.subscribe-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 14px 18px;
    font-size: 14px;
    min-width: 0;
}

.subscribe-form input::placeholder {
    color: rgba(255,255,255,0.35);
}

.subscribe-form button {
    background: #e63946;
    border: none;
    color: #fff;
    padding: 14px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    flex-shrink: 0;
}

.subscribe-form button:hover {
    background: #c1121f;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 22px 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #666;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #e63946;
}

.footer-bottom .fa-heart {
    color: #e63946;
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px 30px;
    }

    .footer-bottom {
        padding: 18px 20px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}

/* ===== LISTING / DEALS GRID PAGE ===== */
.listing-bar {
    padding: 20px 40px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 80px;
    z-index: 50;
}

.listing-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.listing-count span {
    font-size: 15px;
    color: #888;
    font-weight: 500;
}

.listing-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sort-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-group label {
    font-size: 14px;
    color: #888;
    white-space: nowrap;
}

.sort-group select {
    padding: 8px 32px 8px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M6 8L0 0h12z'/%3E%3C/svg%3E") no-repeat right 12px center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s;
}

.sort-group select:focus {
    border-color: #e63946;
}

.view-toggle {
    display: flex;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
}

.view-btn {
    padding: 8px 14px;
    background: #fff;
    border: none;
    color: #bbb;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
}

.view-btn.active {
    background: #111;
    color: #fff;
}

.view-btn:not(.active):hover {
    color: #e63946;
}

.listing-section {
    padding: 40px 40px 80px;
    background: #fafafa;
}

.listing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 24px;
}

.listing-container-few {
    grid-template-columns: repeat(auto-fill, minmax(270px, 320px));
}

/* List view */
.listing-container.list-view {
    grid-template-columns: 1fr;
    gap: 16px;
}

.listing-container.list-view .deal-listing-card a {
    display: flex;
}

.listing-container.list-view .dlc-img {
    width: 280px;
    min-height: 200px;
    height: auto;
    flex-shrink: 0;
}

.listing-container.list-view .dlc-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 28px;
}

.listing-container.list-view .dlc-body h3 {
    font-size: 18px;
    white-space: normal;
}

.listing-container.list-view .dlc-location {
    margin-bottom: 10px;
}

/* Deal listing card */
.deal-listing-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.35s ease;
}

.deal-listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(230,57,70,0.1);
    border-color: #e63946;
}

.deal-listing-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.dlc-img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.dlc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.deal-listing-card:hover .dlc-img img {
    transform: scale(1.08);
}

.dlc-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.dlc-badge.hot {
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
}

.dlc-badge.trending {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    color: #fff;
}

.dlc-badge.gallery-badge {
    background: rgba(0,0,0,0.6);
    color: #fff;
    backdrop-filter: blur(4px);
}

.dlc-body {
    padding: 18px 20px 22px;
}

.dlc-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dlc-location {
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dlc-location i {
    color: #e63946;
    font-size: 12px;
}

.dlc-pricing {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.dlc-price {
    font-size: 20px;
    font-weight: 800;
    color: #e63946;
}

.dlc-original {
    font-size: 14px;
    color: #aaa;
    text-decoration: line-through;
}

.dlc-off {
    font-size: 12px;
    font-weight: 700;
    color: #2d6a4f;
    background: #e8f5e9;
    padding: 3px 10px;
    border-radius: 12px;
}

.dlc-contact {
    margin-top: 10px;
}

.dlc-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #25d366;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.dlc-wa:hover {
    color: #128c7e;
}

/* Empty state */
.listing-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}

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

.listing-empty h3 {
    font-size: 24px;
    color: #444;
    margin-bottom: 10px;
}

.listing-empty p {
    font-size: 15px;
    color: #999;
    margin-bottom: 24px;
}

.wedding-listing-card .dlc-img {
    height: 220px;
}

.wedding-listing-card .dlc-body h3 {
    font-size: 18px;
}

@media (max-width: 1024px) {
    .listing-bar {
        padding: 16px 20px;
    }

    .listing-section {
        padding: 30px 20px 60px;
    }

    .listing-container {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .listing-bar-inner {
        flex-wrap: wrap;
        gap: 12px;
    }

    .listing-controls {
        width: 100%;
        justify-content: space-between;
    }

    .listing-container.list-view .deal-listing-card a {
        flex-direction: column;
    }

    .listing-container.list-view .dlc-img {
        width: 100%;
        min-height: 200px;
    }

    .listing-container {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 14px;
    }

    .dlc-img {
        height: 150px;
    }

    .dlc-body {
        padding: 14px 16px 18px;
    }

    .dlc-body h3 {
        font-size: 14px;
    }

    .dlc-price {
        font-size: 17px;
    }

    .wedding-listing-card .dlc-img {
        height: 180px;
    }
}

/* ===== PAGE BANNER / BREADCRUMB ===== */
.page-banner {
    position: relative;
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0a0a 40%, #2d0a0a 100%);
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230,57,70,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="90" font-size="120" opacity="0.02" fill="white">DD</text></svg>') repeat;
    background-size: 200px;
    opacity: 0.3;
}

.page-banner-content {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.page-banner-content h1 {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #e63946;
}

.breadcrumb .sep {
    color: rgba(255,255,255,0.2);
}

.breadcrumb .current {
    color: #e63946;
    font-weight: 600;
}

@media (max-width: 768px) {
    .page-banner {
        height: 240px;
    }

    .page-banner-content h1 {
        font-size: 30px;
    }

    .breadcrumb {
        font-size: 14px;
    }
}

/* ===== ABOUT PAGE ===== */
.about-page-section {
    padding: 80px 40px;
}

.about-page-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-page-image {
    flex: 1;
    position: relative;
}

.about-page-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(230,57,70,0.3);
}

.about-experience-badge .num {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .label {
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
    opacity: 0.9;
}

.about-page-text {
    flex: 1;
}

.about-page-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.about-page-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #e63946;
    border-radius: 2px;
}

.about-page-text h2 span {
    color: #e63946;
}

.about-page-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    background: #fafafa;
    border-radius: 14px;
    padding: 22px 28px;
    text-align: center;
    flex: 1;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: #e63946;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230,57,70,0.08);
}

.stat-num {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #e63946;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

/* Mission section */
.mission-section {
    padding: 80px 40px 90px;
    background: #fafafa;
}

.mission-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background: #fff;
    border-radius: 20px;
    padding: 45px 35px 40px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    transition: all 0.35s ease;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(230,57,70,0.08);
    border-color: #e63946;
}

.mission-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fce4e4, #fef0f0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 28px;
    color: #e63946;
    transition: all 0.4s ease;
}

.mission-card:hover .mission-icon {
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

.mission-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.mission-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .about-page-container {
        gap: 40px;
    }

    .about-page-image img {
        height: 380px;
    }

    .about-page-text h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .about-page-section {
        padding: 50px 20px;
    }

    .about-page-container {
        flex-direction: column;
    }

    .about-page-image {
        width: 100%;
    }

    .about-page-image img {
        height: 280px;
    }

    .about-experience-badge {
        width: 100px;
        height: 100px;
        bottom: -15px;
        right: -10px;
    }

    .about-experience-badge .num {
        font-size: 20px;
    }

    .about-experience-badge .label {
        font-size: 10px;
    }

    .about-page-text h2 {
        font-size: 26px;
    }

    .about-stats {
        flex-direction: column;
        gap: 12px;
    }

    .mission-section {
        padding: 50px 20px 60px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 80px 40px;
    background: #fff;
}

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

.contact-info-col h2 {
    font-size: 34px;
    font-weight: 800;
    color: #111;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-col h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #e63946;
    border-radius: 2px;
}

.contact-info-col h2 span {
    color: #e63946;
}

.contact-info-col > p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.cd-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fce4e4, #fef0f0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #e63946;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-detail-item:hover .cd-icon {
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    transform: translateY(-2px);
}

.contact-detail-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.contact-detail-item p,
.contact-detail-item a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s;
}

.contact-detail-item a:hover {
    color: #e63946;
}

/* Contact Form */
.contact-form-col {
    background: #fafafa;
    border-radius: 20px;
    padding: 40px 35px;
    border: 1px solid #f0f0f0;
}

.contact-form-col h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 24px;
}

.form-success,
.form-error {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.form-success {
    background: #e8f5e9;
    color: #2d6a4f;
    border: 1px solid #c8e6c9;
}

.form-error {
    background: #ffe8e8;
    color: #c1121f;
    border: 1px solid #ffcdd2;
}

.form-success i,
.form-error i {
    font-size: 18px;
}

.contact-form .form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form .form-group {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230,57,70,0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #bbb;
}

.contact-form textarea {
    resize: vertical;
    margin-bottom: 6px;
}

.contact-submit {
    padding: 15px 36px;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(230,57,70,0.2);
}

.contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230,57,70,0.3);
}

.contact-submit i {
    transition: transform 0.3s;
}

.contact-submit:hover i {
    transform: translateX(4px);
}

/* Map */
.map-section {
    width: 100%;
    height: 400px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 1024px) {
    .contact-container {
        gap: 40px;
    }

    .contact-section {
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-col {
        padding: 30px 22px;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 12px;
    }

    .contact-info-col h2 {
        font-size: 26px;
    }

    .map-section {
        height: 280px;
    }
}

/* Account dropdown mobile */
@media (max-width: 1024px) {
    .account-btn .account-name {
        display: none;
    }

    .account-btn {
        padding: 6px 10px;
    }

    .account-btn-guest {
        padding: 8px 12px;
    }

    .account-menu {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 80vh;
        overflow-y: auto;
        transform: translateY(100%);
        padding: 16px 0 30px;
    }

    .account-dropdown:hover .account-menu {
        transform: translateY(0);
    }

    .account-dropdown {
        position: static;
    }
}

/* ===== DESTINATION DETAIL PAGE ===== */
.dest-detail-section {
    padding: 60px 40px;
    background: #fff;
}

.dest-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.dest-gallery-main {
    width: 100%;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.dest-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dest-gallery-main:hover img {
    transform: scale(1.03);
}

.dest-gallery-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.dest-gallery-thumbs img {
    width: 90px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.dest-gallery-thumbs img.active,
.dest-gallery-thumbs img:hover {
    border-color: #e63946;
    opacity: 1;
}

.dest-info-col {
    padding-top: 10px;
}

.dest-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: #fce4e4;
    color: #e63946;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.dest-title {
    font-size: 34px;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    margin-bottom: 0;
}

.dest-divider {
    width: 60px;
    height: 4px;
    background: #e63946;
    border-radius: 2px;
    margin: 18px 0 20px;
}

.dest-description {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.dest-description p {
    margin-bottom: 10px;
}

.dest-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dest-contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #fafafa;
    border-radius: 14px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.dest-contact-card:hover {
    border-color: #e63946;
    transform: translateX(4px);
}

.dcc-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fce4e4, #fef0f0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #e63946;
    flex-shrink: 0;
}

.dcc-icon.wa {
    background: linear-gradient(135deg, #d4f5e0, #e8f8ee);
    color: #25d366;
}

.dcc-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.dest-contact-card a {
    font-size: 15px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.dest-contact-card a:hover {
    color: #e63946;
}

/* Contact form section */
.dest-contact-section {
    padding: 60px 40px 80px;
    background: linear-gradient(135deg, #fafafa, #fff);
}

.dest-contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    padding: 48px 44px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
}

.dest-form-text {
    text-align: center;
    margin-bottom: 32px;
}

.dest-form-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 8px;
}

.dest-form-text h2 span {
    color: #e63946;
}

.dest-form-text p {
    font-size: 15px;
    color: #888;
}

.dest-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dest-form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.dest-contact-form input,
.dest-contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

.dest-contact-form input:focus,
.dest-contact-form textarea:focus {
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230,57,70,0.08);
}

.dest-contact-form input::placeholder,
.dest-contact-form textarea::placeholder {
    color: #bbb;
}

.dest-contact-form textarea {
    resize: vertical;
}

.dest-form-btn {
    align-self: flex-start;
    padding: 14px 34px;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(230,57,70,0.2);
}

.dest-form-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230,57,70,0.3);
}

.dest-form-btn i {
    transition: transform 0.3s;
}

.dest-form-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .dest-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .dest-gallery-main {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .dest-detail-section {
        padding: 40px 16px;
    }

    .dest-gallery-main {
        height: 260px;
    }

    .dest-gallery-thumbs img {
        width: 70px;
        height: 55px;
    }

    .dest-title {
        font-size: 26px;
    }

    .dest-contact-section {
        padding: 40px 16px 60px;
    }

    .dest-contact-form-container {
        padding: 30px 22px;
    }

    .dest-form-row {
        grid-template-columns: 1fr;
    }

    .dest-form-text h2 {
        font-size: 22px;
    }
}

/* ===== DEAL DETAIL PAGE ===== */
.product-detail-section {
    padding: 50px 40px;
    background: #fff;
}

.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-gallery-main {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-gallery-main:hover img {
    transform: scale(1.04);
}

.prod-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.prod-badge.hot {
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
}

.prod-badge.trending {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    color: #fff;
}

.product-gallery-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.product-gallery-thumbs img {
    width: 90px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.product-gallery-thumbs img.active,
.product-gallery-thumbs img:hover {
    border-color: #e63946;
    opacity: 1;
}

/* Info column */
.prod-category {
    display: inline-block;
    padding: 5px 14px;
    background: #fce4e4;
    color: #e63946;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.prod-title {
    font-size: 30px;
    font-weight: 800;
    color: #111;
    line-height: 1.25;
    margin-bottom: 14px;
}

.prod-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.prod-meta span {
    font-size: 14px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.prod-meta span i {
    color: #e63946;
}

.prod-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.prod-sale-price {
    font-size: 32px;
    font-weight: 800;
    color: #e63946;
}

.prod-original-price {
    font-size: 18px;
    color: #bbb;
    text-decoration: line-through;
}

.prod-discount {
    font-size: 13px;
    font-weight: 700;
    color: #2d6a4f;
    background: #e8f5e9;
    padding: 4px 14px;
    border-radius: 20px;
}

.prod-savings {
    font-size: 14px;
    color: #2d6a4f;
    margin-bottom: 20px;
}

.prod-divider {
    width: 100%;
    height: 1px;
    background: #f0f0f0;
    margin: 20px 0;
}

.prod-voucher-info {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
}

.prod-voucher-info i {
    color: #2d6a4f;
}

.prod-add-cart {
    width: 50%;
    padding: 14px 0;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 6px 25px rgba(230,57,70,0.25);
    letter-spacing: 0.5px;
}

.prod-add-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230,57,70,0.35);
}

.prod-add-cart i {
    font-size: 18px;
}

/* Override .add-cart-btn.added for the detail page button */
.prod-add-cart.add-cart-btn.added {
    background: #2d6a4f !important;
    pointer-events: none;
}

/* Vouchers */
.prod-vouchers {
    margin-top: 24px;
}

.prod-vouchers h4 {
    font-size: 15px;
    font-weight: 700;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prod-vouchers h4 i {
    color: #e63946;
}

.prod-voucher-file {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: all 0.3s;
    margin-bottom: 8px;
}

.prod-voucher-file:hover {
    border-color: #e63946;
    background: #fff;
}

.prod-voucher-file i {
    font-size: 22px;
    color: #e63946;
}

.v-size {
    margin-left: auto;
    font-size: 12px;
    color: #aaa;
}

/* ===== Voucher Button + Preview Popup ===== */
.prod-voucher-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    color: #fff;
    box-shadow: 0 4px 14px rgba(230, 57, 70, 0.25);
    transition: all 0.3s ease;
}

.prod-voucher-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(230, 57, 70, 0.35);
}

.prod-voucher-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.25);
}

.pv-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 18px;
}

.pv-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.pv-text strong {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.pv-text small {
    font-size: 11px;
    opacity: 0.85;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pv-open {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    font-size: 13px;
    transition: background 0.3s;
}

.prod-voucher-btn:hover .pv-open {
    background: rgba(255, 255, 255, 0.32);
}

/* Popup */
.pv-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pv-modal.active {
    display: flex;
}

.pv-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    animation: pvFadeIn 0.25s ease;
}

.pv-modal-box {
    position: relative;
    width: 100%;
    max-width: 960px;
    height: 90vh;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    animation: pvPopIn 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.pv-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    color: #fff;
}

.pv-modal-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    min-width: 0;
}

.pv-modal-title span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pv-modal-close {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.pv-modal-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.pv-modal-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #f7f7f9;
}

.pv-modal-body img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.pv-modal-empty {
    display: none;
    padding: 50px 20px;
    color: #999;
    font-size: 14px;
}

.pv-modal-foot {
    padding: 14px 18px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: center;
}

.pv-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(230, 57, 70, 0.25);
    transition: all 0.3s ease;
}

.pv-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(230, 57, 70, 0.35);
    color: #fff;
}

@keyframes pvFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pvPopIn {
    from { opacity: 0; transform: scale(0.92) translateY(12px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Tabs */
.prod-tabs-section {
    padding: 10px 40px 70px;
    background: #fafafa;
}

.prod-tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
}

.prod-tabs-nav {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
}

.prod-tab-btn {
    padding: 16px 32px;
    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.prod-tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #e63946;
    border-radius: 2px;
    transition: width 0.3s;
}

.prod-tab-btn.active {
    color: #e63946;
}

.prod-tab-btn.active::after {
    width: 40px;
}

.prod-tab-btn:hover {
    color: #e63946;
}

.prod-tabs-content {
    padding: 30px 36px;
}

.prod-tab-panel {
    display: none;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.prod-tab-panel.active {
    display: block;
}

.prod-tab-panel ul {
    padding-left: 20px;
}

.prod-tab-panel li {
    margin-bottom: 6px;
}

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

    .product-gallery-main {
        height: 360px;
    }

    .prod-title {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding: 30px 16px;
    }

    .product-gallery-main {
        height: 260px;
    }

    .product-gallery-thumbs img {
        width: 70px;
        height: 55px;
    }

    .prod-title {
        font-size: 22px;
    }

    .prod-sale-price {
        font-size: 26px;
    }

    .prod-tabs-section {
        padding: 10px 16px 50px;
    }

    .prod-tabs-content {
        padding: 20px 18px;
    }

    .prod-tab-btn {
        padding: 14px 18px;
        font-size: 14px;
    }
}

/* ===== MY PROFILE PAGE ===== */
.profile-section {
    padding: 60px 40px 80px;
    background: #fafafa;
    min-height: 500px;
}

.profile-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.profile-sidebar {
    position: sticky;
    top: 100px;
}

.profile-avatar-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.profile-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 18px;
    border: 4px solid #f0f0f0;
    transition: border-color 0.3s;
}

.profile-avatar-card:hover .profile-avatar {
    border-color: #e63946;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pa-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 700;
}

.profile-avatar-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.profile-avatar-card p {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.profile-avatar-stats {
    display: flex;
    gap: 16px;
    justify-content: center;
    padding-top: 18px;
    border-top: 1px solid #f0f0f0;
}

.pas-item {
    text-align: center;
}

.pas-num {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #e63946;
}

.pas-label {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

.profile-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.profile-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 34px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.profile-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-card h3 i {
    color: #e63946;
    font-size: 18px;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pf-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pf-group label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.pf-group input,
.pf-group textarea {
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
    background: #fff;
}

.pf-group input:focus,
.pf-group textarea:focus {
    border-color: #e63946;
    box-shadow: 0 0 0 3px rgba(230,57,70,0.08);
}

.pf-group input[type="file"] {
    padding: 8px 12px;
}

/* Profile upload area */
.pf-upload-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pf-upload-area {
    position: relative;
    border: 2px dashed #d0d0d0;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.pf-upload-area:hover {
    border-color: #e63946;
    background: #fef0f0;
}

.pf-upload-area.dragover {
    border-color: #e63946;
    background: #fce4e4;
}

.pf-upload-area i {
    font-size: 36px;
    color: #e63946;
    margin-bottom: 8px;
}

.pf-upload-area p {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    margin-bottom: 4px;
}

.pf-upload-area span {
    font-size: 12px;
    color: #999;
}

.pf-upload-area input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.pf-upload-progress {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
    display: none;
}

.pf-upload-progress.active {
    display: block;
}

.pf-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #e63946, #ff6b6b);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.pf-upload-preview {
    position: relative;
    display: none;
    width: 100px;
    height: 100px;
    border-radius: 14px;
    overflow: hidden;
    border: 3px solid #e63946;
}

.pf-upload-preview.active {
    display: block;
}

.pf-upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pf-preview-remove {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e63946;
    color: #fff;
    border: none;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.pf-preview-remove:hover {
    transform: scale(1.2);
}

.pf-group textarea {
    resize: vertical;
}

.profile-submit {
    align-self: flex-start;
    padding: 13px 32px;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(230,57,70,0.2);
    margin-top: 4px;
}

.profile-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230,57,70,0.3);
}

@media (max-width: 1024px) {
    .profile-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .profile-sidebar {
        position: static;
    }

    .profile-avatar-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .profile-section {
        padding: 40px 16px 60px;
    }

    .pf-row {
        grid-template-columns: 1fr;
    }

    .profile-card {
        padding: 24px 20px;
    }

    .profile-submit {
        width: 100%;
        justify-content: center;
    }
}

/* ===== RESPONSIVE ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s;
}

@media (max-width: 1024px) {
    .header {
        padding: 0 20px;
    }

    .hamburger {
        display: flex;
    }

    .header .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: #111;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 0;
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .header .nav-menu.active {
        left: 0;
    }

    .header .nav-menu > li {
        width: 100%;
    }

    .header .nav-menu > li > a {
        width: 100%;
        padding: 14px 12px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #1a1a1a;
        border-radius: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin: 0 0 10px 0;
    }

    .nav-menu > li.dropdown-open .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        color: #ccc;
        padding: 10px 20px;
    }

    .dropdown-menu li a:hover {
        background: rgba(255,255,255,0.05);
        color: #e63946;
    }
}

/* ===== CHECKOUT PAGE ===== */
.checkout-page-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.checkout-section {
    padding: 60px 40px 90px;
    min-height: 500px;
    background: linear-gradient(180deg, #f6f7fb 0%, #eef1f8 100%);
}

.checkout-container {
    max-width: 1100px;
    margin: 0 auto;
}

.co-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    align-items: start;
}

.co-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    margin-bottom: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.co-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.09);
}

.co-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f3f4f8;
}

.co-card-head i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(230,57,70,0.25);
}

.co-card-head h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

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

.co-form-row.co-form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.co-field {
    margin-bottom: 16px;
}

.co-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 7px;
}

.co-field input {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e8eaf1;
    border-radius: 12px;
    font-size: 14px;
    color: #1a1a2e;
    background: #fafbff;
    outline: none;
    transition: all 0.3s;
}

.co-field input:focus {
    border-color: #e63946;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(230,57,70,0.1);
}

/* Select dropdown (state picker) */
.co-field select {
    width: 100%;
    padding: 14px 44px 14px 16px;
    border: 2px solid #e2e6f0;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
    background: linear-gradient(135deg, #fbfcff, #f4f6fd);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%23e63946" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.co-field select:hover {
    border-color: #c9d2e8;
    background-color: #fff;
    box-shadow: 0 4px 14px rgba(230,57,70,0.08);
    transform: translateY(-1px);
}

.co-field select:focus {
    border-color: #e63946;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(230,57,70,0.12), 0 6px 20px rgba(230,57,70,0.08);
}

.co-field select:valid {
    border-color: #2d6a4f;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%232d6a4f" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>');
}

/* Native dropdown options */
.co-field select option {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
    background: #fff;
}

.co-field select option:first-child {
    color: #999;
    font-weight: 400;
}

.co-field select option:hover,
.co-field select option:checked {
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
}

.co-field select.co-field-error {
    border-color: #e63946;
    background-color: #fff5f6;
}

/* Field validation errors */
.co-field input.co-field-error,
.co-field select.co-field-error {
    border-color: #e63946;
    background-color: #fff5f6;
}

.co-field input.co-field-error:focus {
    box-shadow: 0 0 0 4px rgba(230,57,70,0.12);
}

.co-field-err {
    display: none;
    font-size: 12px;
    color: #e63946;
    margin-top: 6px;
    font-weight: 500;
}

.co-field-err.active {
    display: block;
}

.co-pay-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.co-pay-opt {
    cursor: pointer;
}

.co-pay-opt input {
    display: none;
}

.co-pay-opt span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 10px;
    border: 2px solid #e8eaf1;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
}

.co-pay-opt span i {
    font-size: 22px;
    color: #999;
    transition: all 0.3s;
}

.co-pay-opt input:checked + span {
    border-color: #e63946;
    background: linear-gradient(135deg, rgba(230,57,70,0.08), rgba(193,18,31,0.05));
    color: #e63946;
}

.co-pay-opt input:checked + span i {
    color: #e63946;
}

.co-secure-note {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: #2d6a4f;
    background: #f0faf4;
    padding: 12px 16px;
    border-radius: 12px;
}

.co-items {
    max-height: 260px;
    overflow-y: auto;
    padding-right: 6px;
    margin-bottom: 8px;
}

.co-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.co-item:last-child {
    border-bottom: none;
}

.co-item img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid #f0f0f0;
}

.co-item-info {
    flex: 1;
    min-width: 0;
}

.co-item-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.co-item-info span {
    font-size: 12px;
    color: #999;
}

.co-item-price {
    font-size: 15px;
    font-weight: 700;
    color: #e63946;
    white-space: nowrap;
}

.co-coupon-area {
    margin: 14px 0;
}

.co-coupon-row {
    display: flex;
    gap: 10px;
}

.co-coupon-row input {
    flex: 1;
    padding: 12px 16px;
    border: 2px dashed #e63946;
    border-radius: 12px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    outline: none;
    background: #fff8f8;
    transition: all 0.3s;
}

.co-coupon-row input:focus {
    background: #fff;
    box-shadow: 0 0 0 4px rgba(230,57,70,0.08);
}

.co-coupon-row button {
    padding: 12px 24px;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.co-coupon-row button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230,57,70,0.3);
}

.co-coupon-msg {
    margin-top: 8px;
    font-size: 12.5px;
}

.co-coupon-msg.error {
    color: #e63946;
}

.co-coupon-msg.success {
    color: #2d6a4f;
}

.co-coupon-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: linear-gradient(135deg, #f0faf4, #e6f7ee);
    border: 2px solid #2d6a4f;
    border-radius: 14px;
    padding: 14px 18px;
}

.co-coupon-applied-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.co-coupon-applied-left i {
    font-size: 24px;
    color: #2d6a4f;
}

.co-coupon-applied-left strong {
    display: block;
    font-size: 15px;
    color: #1a4d33;
    letter-spacing: 1px;
}

.co-coupon-applied-left span {
    font-size: 12px;
    color: #2d6a4f;
}

.co-coupon-remove {
    padding: 7px 16px;
    background: transparent;
    border: 2px solid #2d6a4f;
    color: #2d6a4f;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.co-coupon-remove:hover {
    background: #2d6a4f;
    color: #fff;
}

.co-totals {
    border-top: 2px solid #f3f4f8;
    padding-top: 16px;
}

.co-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    padding: 7px 0;
}

.co-free {
    color: #2d6a4f;
    font-weight: 700;
}

.co-discount-row {
    color: #2d6a4f;
    font-weight: 600;
}

.co-grand-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #f3f4f8;
    margin-top: 12px;
    padding-top: 16px;
}

.co-grand-row span:first-child {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
}

.co-grand-amt {
    font-size: 28px;
    font-weight: 800;
    color: #e63946;
}

.co-place-order {
    width: 100%;
    margin-top: 20px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 8px 25px rgba(230,57,70,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.co-place-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(230,57,70,0.4);
}

.co-place-order:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.co-order-msg {
    margin-top: 12px;
    font-size: 13px;
    text-align: center;
}

.co-order-msg.error {
    color: #e63946;
}

.co-order-msg.success {
    color: #2d6a4f;
}

.co-trust-card {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: none;
    padding: 22px 28px;
}

.co-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cfd8e8;
    font-size: 13.5px;
    padding: 8px 0;
}

.co-trust-item i {
    color: #FCBD28;
    font-size: 17px;
    width: 24px;
    text-align: center;
}

.co-success {
    text-align: center;
    padding: 70px 20px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    max-width: 560px;
    margin: 0 auto;
}

.co-success-icon i {
    font-size: 80px;
    color: #2d6a4f;
    margin-bottom: 20px;
}

.co-success h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.co-success p {
    color: #777;
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.co-success .cart-checkout-btn {
    margin-top: 24px;
    display: inline-flex;
}

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

    .checkout-section {
        padding: 40px 16px 60px;
    }

    .co-card {
        padding: 20px;
    }

    .co-pay-methods {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .co-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .co-form-row.co-form-row-3 {
        grid-template-columns: 1fr;
    }

    .co-pay-methods {
        grid-template-columns: 1fr;
    }
}

/* ===== UPI PAYMENT SECTION ===== */
.co-upi-panel {
    margin-top: 24px;
}

/* Step indicator */
.co-upi-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.co-upi-step {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 600;
    color: #999;
}

.co-upi-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    background: #eef0f6;
    color: #888;
    transition: all 0.3s;
}

.co-upi-step.active {
    color: #e63946;
}

.co-upi-step.active .co-upi-step-num {
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    box-shadow: 0 4px 12px rgba(230,57,70,0.3);
}

.co-upi-step-line {
    width: 36px;
    height: 2px;
    background: #e8eaf1;
    border-radius: 2px;
}

/* Main UPI box */
.co-upi-box {
    display: flex;
    gap: 28px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2fb 100%);
    border: 1px solid #e8eaf1;
    border-radius: 20px;
    padding: 26px;
}

/* QR side */
.co-upi-qr-side {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.co-upi-qr-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.co-upi-qr-label i {
    color: #e63946;
    font-size: 14px;
}

.co-upi-qr-frame {
    position: relative;
    background: #fff;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid #e8eaf1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.co-upi-qr-corner {
    position: absolute;
    width: 22px;
    height: 22px;
    border: 3px solid #e63946;
    z-index: 3;
}

.co-upi-qr-corner-tl { top: -2px; left: -2px; border-right: none; border-bottom: none; border-top-left-radius: 16px; }
.co-upi-qr-corner-tr { top: -2px; right: -2px; border-left: none; border-bottom: none; border-top-right-radius: 16px; }
.co-upi-qr-corner-bl { bottom: -2px; left: -2px; border-right: none; border-top: none; border-bottom-left-radius: 16px; }
.co-upi-qr-corner-br { bottom: -2px; right: -2px; border-left: none; border-top: none; border-bottom-right-radius: 16px; }

.co-upi-qr img, .co-upi-qr canvas {
    display: block;
}

.co-upi-expired-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.94);
    border-radius: 16px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.co-upi-expired-overlay.active {
    display: flex;
}

.co-upi-expired-inner {
    text-align: center;
    padding: 10px;
}

.co-upi-expired-inner i {
    font-size: 34px;
    color: #e63946;
    display: block;
    margin-bottom: 8px;
}

.co-upi-expired-inner strong {
    display: block;
    font-size: 15px;
    color: #1a1a2e;
}

.co-upi-expired-inner span {
    display: block;
    font-size: 12px;
    color: #888;
    margin: 4px 0 12px;
}

.co-upi-refresh {
    padding: 9px 20px;
    background: linear-gradient(135deg, #e63946, #c1121f);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.co-upi-refresh:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(230,57,70,0.3);
}

.co-upi-timer {
    margin-top: 14px;
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1px solid #e8eaf1;
    border-radius: 30px;
    padding: 7px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.co-upi-timer i {
    color: #e63946;
}

.co-upi-timer strong {
    color: #e63946;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

/* Info side */
.co-upi-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.co-upi-amt-box {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 16px;
    padding: 18px 22px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.co-upi-amt-box::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(252,189,40,0.12);
}

.co-upi-amt-box span {
    display: block;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 4px;
}

.co-upi-amt-box strong {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: #FCBD28;
    line-height: 1.2;
}

.co-upi-amt-box em {
    display: block;
    font-style: normal;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin-top: 4px;
}

.co-upi-vpa-row {
    display: flex;
    gap: 8px;
}

.co-upi-vpa-row input {
    flex: 1;
    min-width: 0;
    padding: 12px 16px;
    border: 2px solid #e8eaf1;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    background: #fff;
    outline: none;
    transition: border-color 0.3s;
}

.co-upi-vpa-row input:focus {
    border-color: #e63946;
}

.co-upi-copy {
    padding: 12px 18px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.co-upi-copy:hover {
    background: linear-gradient(135deg, #e63946, #c1121f);
    transform: translateY(-1px);
}

/* Mobile "Pay via UPI App" button */
.co-upi-app-btn {
    display: none; /* hidden on desktop, shown on mobile */
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #00b894, #00a381);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0,184,148,0.35);
}

.co-upi-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,184,148,0.45);
    color: #fff;
}

/* Popular UPI apps */
.co-upi-apps {
    background: #fff;
    border: 1px solid #e8eaf1;
    border-radius: 14px;
    padding: 14px 18px;
}

.co-upi-apps > span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #999;
    margin-bottom: 10px;
}

.co-upi-app-icons {
    display: flex;
    gap: 10px;
}

.co-upi-app-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    font-style: normal;
    cursor: default;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: transform 0.3s;
}

.co-upi-app-icon:hover {
    transform: translateY(-3px) scale(1.05);
}

.co-upi-app-icon.gp { background: linear-gradient(135deg, #4285F4, #34A853); }
.co-upi-app-icon.phonepe { background: linear-gradient(135deg, #5f259f, #7b3fe4); }
.co-upi-app-icon.paytm { background: linear-gradient(135deg, #00baf2, #002e6e); }
.co-upi-app-icon.bhim { background: linear-gradient(135deg, #e66a2c, #d04a15); }

.co-upi-note {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 7px;
}

.co-upi-note i {
    color: #2d6a4f;
}

.co-upi-noqr {
    text-align: center;
    color: #888;
    font-size: 13px;
    padding: 30px 10px;
}

/* Responsive */
@media (max-width: 768px) {
    /* Hide QR on mobile, show "Pay via UPI App" button */
    .co-upi-qr-side {
        display: none;
    }

    .co-upi-app-btn {
        display: flex;
    }

    .co-upi-box {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }

    .co-upi-steps {
        gap: 6px;
    }

    .co-upi-step-line {
        width: 22px;
    }
}

@media (min-width: 769px) {
    /* Hide the UPI app button on desktop */
    .co-upi-app-btn {
        display: none !important;
    }
}

/* ===== PAYMENT HINT ===== */
.co-pay-hint {
    margin-top: 14px;
    padding: 11px 15px;
    background: #f0f4ff;
    border: 1px solid #dbe4ff;
    border-radius: 12px;
    font-size: 13px;
    color: #3b5bdb;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.45;
}

.co-pay-hint i {
    flex-shrink: 0;
}

/* ===== UPI APP LOGOS ===== */
.co-app-logo {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    font-style: normal;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.co-app-logo.gpay { background: linear-gradient(135deg, #4285F4, #34A853); }
.co-app-logo.phonepe { background: linear-gradient(135deg, #5f259f, #7b3fe4); }
.co-app-logo.paytm { background: linear-gradient(135deg, #00baf2, #002e6e); }
.co-app-logo.bhim { background: linear-gradient(135deg, #e66a2c, #d04a15); }
.co-app-logo.amazonpay { background: linear-gradient(135deg, #ff9900, #e47911); }
.co-app-logo.cred { background: linear-gradient(135deg, #1a1a1a, #3d3d3d); }
.co-app-logo.upi { background: linear-gradient(135deg, #7d4dd3, #4a2a8a); }

/* ===== MOBILE SLIDE-UP SHEET ===== */
.co-sheet-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.co-sheet-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.co-sheet {
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: 24px 24px 0 0;
    padding: 12px 20px 24px;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    max-height: 92vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.co-sheet-backdrop.active .co-sheet {
    transform: translateY(0);
}

.co-sheet-handle {
    width: 42px;
    height: 4px;
    border-radius: 4px;
    background: #d8dbe6;
    margin: 4px auto 14px;
}

.co-sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.co-sheet-title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 9px;
}

.co-sheet-title i {
    color: #e63946;
}

.co-sheet-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #f1f2f7;
    color: #555;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s;
}

.co-sheet-close:hover {
    background: #e63946;
    color: #fff;
}

.co-sheet-amt {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 16px;
    padding: 16px 20px;
    color: #fff;
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
}

.co-sheet-amt::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(252,189,40,0.12);
}

.co-sheet-amt span {
    display: block;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
}

.co-sheet-amt strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #FCBD28;
    line-height: 1.2;
}

.co-sheet-amt em {
    font-style: normal;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

.co-sheet-label {
    font-size: 13px;
    font-weight: 700;
    color: #444;
    margin-bottom: 12px;
}

.co-sheet-apps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.co-sheet-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 6px;
    background: #f8f9fc;
    border: 1.5px solid #eceef3;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.25s;
}

.co-sheet-app:hover {
    border-color: #e63946;
    background: #fff5f6;
    transform: translateY(-2px);
}

.co-sheet-app:active {
    transform: scale(0.96);
}

.co-app-name {
    font-size: 11.5px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.co-sheet-note {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 7px;
    background: #f7f8fb;
    border-radius: 10px;
    padding: 10px 13px;
    margin-bottom: 14px;
    line-height: 1.4;
}

.co-sheet-note i {
    color: #2d6a4f;
    flex-shrink: 0;
}

.co-sheet-paid {
    width: 100%;
    padding: 15px 18px;
    background: linear-gradient(135deg, #00b894, #00a381);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: all 0.3s;
    box-shadow: 0 8px 22px rgba(0,184,148,0.3);
}

.co-sheet-paid:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,184,148,0.4);
}

/* ===== DESKTOP QR MODAL ===== */
.co-qr-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.co-qr-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.co-qr-modal {
    width: 100%;
    max-width: 640px;
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    transform: scale(0.94) translateY(10px);
    transition: transform 0.3s ease;
    max-height: 92vh;
    overflow-y: auto;
}

.co-qr-modal-backdrop.active .co-qr-modal {
    transform: scale(1) translateY(0);
}

.co-qr-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    padding-bottom: 16px;
    border-bottom: 2px solid #f3f4f8;
    margin-bottom: 18px;
}

.co-qr-modal-head > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.co-qr-modal-head i {
    color: #e63946;
    font-size: 18px;
}

.co-qr-modal-body {
    display: flex;
    gap: 26px;
    align-items: flex-start;
}

.co-qr-side2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.co-qr-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.co-qr-apps-label {
    font-size: 12.5px;
    font-weight: 700;
    color: #666;
    margin-top: 4px;
}

.co-sheet-apps-inline {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 4px;
}

.co-sheet-apps-inline .co-sheet-app {
    padding: 10px 4px;
}

.co-sheet-apps-inline .co-app-logo {
    width: 38px;
    height: 38px;
    font-size: 17px;
}

/* QR frame reuse */
.co-upi-qr-frame {
    position: relative;
    background: #fff;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid #e8eaf1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.co-upi-qr-corner {
    position: absolute;
    width: 22px;
    height: 22px;
    border: 3px solid #e63946;
    z-index: 3;
}

.co-upi-qr-corner-tl { top: -2px; left: -2px; border-right: none; border-bottom: none; border-top-left-radius: 16px; }
.co-upi-qr-corner-tr { top: -2px; right: -2px; border-left: none; border-bottom: none; border-top-right-radius: 16px; }
.co-upi-qr-corner-bl { bottom: -2px; left: -2px; border-right: none; border-top: none; border-bottom-left-radius: 16px; }
.co-upi-qr-corner-br { bottom: -2px; right: -2px; border-left: none; border-top: none; border-bottom-right-radius: 16px; }

.co-upi-qr img, .co-upi-qr canvas {
    display: block;
}

.co-upi-qr {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
}

/* Responsive modal */
@media (max-width: 768px) {
    .co-qr-modal-body {
        flex-direction: column;
        align-items: center;
    }

    .co-qr-info {
        width: 100%;
    }

    .co-sheet-apps-inline {
        grid-template-columns: repeat(2, 1fr);
    }
}
