:root {
    --aman-teal: #00b5d1;
    --aman-navy: #003c58;
    --aman-orange: #ff6900;
    --aman-install-bg: #fff3e0;
    --aman-red: #e61e2a;
    --aman-border: #e0e0e0;
    --aman-text: #000000;
    --aman-subtext: #6c757d;
    --bg-gray: #f8f9fa;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background: var(--bg-gray);
    color: var(--aman-text);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

.top-bar {
    background: var(--aman-navy);
    color: var(--white);
    padding: 6px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.top-bar p {
    margin: 0;
}

header {
    background: var(--aman-teal);
    padding: 10px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    letter-spacing: -1px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.search-wrapper {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.search-wrapper form {
    position: relative;
}

.search-wrapper input {
    width: 100%;
    height: 36px;
    border: none;
    border-radius: 30px;
    padding: 0 35px 0 15px;
    font-size: 13px;
    outline: none;
    font-family: 'Cairo', sans-serif;
}

.search-submit {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border: 0;
    background: transparent;
    color: #999;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.tool-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    position: relative;
    transition: 0.2s;
}

.tool-icon:hover {
    background: var(--white);
    color: var(--aman-navy);
    border-color: var(--white);
}

.tool-icon i {
    font-size: 17px;
}

.tool-icon svg,
.all-cats svg,
.nav-links svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-count {
    background: var(--aman-orange);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -7px;
    left: -7px;
}

.sub-nav {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.sub-nav-content {
    display: flex;
    align-items: center;
}

.all-cats {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 15px;
    cursor: pointer;
    color: var(--aman-text);
    background: var(--bg-gray);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: stretch;
}

.nav-links li {
    position: relative;
}

.nav-links li a,
.nav-drop-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 12px;
    color: var(--aman-text);
    transition: 0.2s;
}

.nav-drop-trigger {
    border: 0;
    background: transparent;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
}

.nav-links li a:hover,
.nav-drop-trigger:hover {
    color: var(--aman-teal);
}

.nav-trigger-icon,
.nav-chevron,
.nav-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.nav-trigger-icon svg,
.nav-item-icon svg {
    width: 18px;
    height: 18px;
}

.nav-chevron svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.nav-dropdown:hover .nav-chevron svg,
.nav-dropdown:focus-within .nav-chevron svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 200;
    width: 250px;
    max-height: 390px;
    overflow-y: auto;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--aman-border);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 16px 30px rgba(0, 60, 88, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.2s;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links li .nav-dropdown-item {
    width: 100%;
    min-height: 42px;
    padding: 9px 10px;
    border-radius: 6px;
    justify-content: flex-start;
    color: var(--aman-text);
}

.nav-links li .nav-dropdown-item:hover {
    background: #eefafd;
    color: var(--aman-navy);
}

.nav-item-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #f2fbfd;
    color: var(--aman-teal);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 20px;
}

.section-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--aman-text);
}

.section-header a {
    font-size: 14px;
    color: var(--aman-teal);
    font-weight: 700;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 40px;
}

.card {
    background: var(--white);
    border: 1px solid var(--aman-border);
    border-radius: 12px;
    padding: 12px;
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    border-color: #ccc;
}

.card-top {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 10;
}

.wishlist-icon {
    color: #ccc;
    font-size: 18px;
    transition: 0.2s;
}

.card:hover .wishlist-icon {
    color: var(--aman-text);
}

.discount-ribbon {
    background: var(--aman-red);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
}

.c-img-wrapper {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    margin-bottom: 5px;
    position: relative;
    overflow: hidden;
}

.c-img-wrapper img {
    max-height: 160px;
    max-width: 100%;
    object-fit: contain;
}

.float-install {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--aman-install-bg);
    color: var(--aman-orange);
    font-size: 9px;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 3px;
}

.add-circle {
    position: absolute;
    left: 12px;
    bottom: 55px;
    background: var(--aman-teal);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 181, 209, 0.3);
}

.add-circle:hover {
    transform: scale(1.1);
    background: #00a0b8;
}

.c-title {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--aman-text);
    height: 34px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
    margin-top: 10px;
}

.c-brand-logo {
    height: 28px;
    width: 28px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--aman-border);
    background: var(--white);
}

.c-brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.c-price-box {
    margin-bottom: 8px;
}

.c-price-old {
    font-size: 11px;
    color: var(--aman-subtext);
    text-decoration: line-through;
    display: block;
    margin-bottom: 2px;
}

.c-price-now {
    font-size: 20px;
    font-weight: 900;
    color: var(--aman-text);
    display: flex;
    align-items: flex-end;
    line-height: 1;
}

.c-price-now span {
    font-size: 11px;
    margin-right: 3px;
    font-weight: 700;
    margin-bottom: 2px;
}

.c-stock {
    font-size: 10px;
    color: var(--aman-subtext);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
    margin-top: auto;
}

.c-stock i {
    color: var(--aman-orange);
    font-size: 11px;
}

.c-bottom-install {
    font-size: 10px;
    font-weight: 800;
    color: var(--aman-orange);
    display: flex;
    align-items: center;
    gap: 4px;
    border-top: 1px solid var(--bg-gray);
    padding-top: 8px;
}

.c-spec-badges {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.c-spec-badge {
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.c-spec-badge.cooling-hot {
    background: #fde8e8;
    color: var(--aman-red);
}

.c-spec-badge.cooling-cold {
    background: #e3f6fb;
    color: var(--aman-teal);
}

.c-spec-badge.power {
    background: #fff8e1;
    color: #f59e0b;
}

.newsletter {
    background: #cdebf3;
    padding: 40px 0;
    text-align: center;
    margin-top: 40px;
}

.newsletter h3 {
    margin-bottom: 20px;
    font-weight: 800;
}

.news-wrap {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
}

.news-wrap input {
    flex: 1;
    padding: 0 15px;
    height: 45px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-family: 'Cairo', sans-serif;
}

.news-wrap button {
    background: var(--aman-orange);
    color: var(--white);
    border: none;
    padding: 0 25px;
    height: 45px;
    font-weight: 700;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
}

footer {
    background: var(--aman-navy);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--aman-teal);
}

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

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

.footer-col ul li a {
    color: #ccc;
    font-size: 13px;
    font-weight: 600;
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    background: rgba(255, 255, 255, 0.1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: 0.2s;
}

.social-icons a:hover {
    background: var(--aman-teal);
}

.home-slider-wrap {
    margin: 20px 0;
}

.home-hero-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.home-hero-pair-single {
    grid-template-columns: 1fr;
}

.home-hero-pair-item,
.home-hero-pair-item picture,
.home-hero-pair-item a {
    min-height: 0;
    height: 100%;
}

.home-hero-pair-item {
    aspect-ratio: 2.6 / 1;
}

.home-hero-pair-single .home-hero-pair-item {
    grid-column: 1 / -1;
    aspect-ratio: 1300 / 430;
}

.home-slider-wrap .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.home-slider-wrap picture,
.home-slider-wrap a {
    display: block;
}

.home-slider-wrap .swiper-pagination-bullet-active {
    background: var(--aman-teal);
}

.home-cats-band {
    margin: 26px 0 10px;
    padding: 18px 0 10px;
    background: var(--white);
    border-top: 1px solid #edf1f3;
    border-bottom: 1px solid #edf1f3;
}

.home-cats-header {
    margin: 0 0 8px;
}

.cat-slider-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cat-slider-controls button {
    width: 34px;
    height: 34px;
    border: 1px solid #d8e4e8;
    border-radius: 50%;
    background: #f7fbfc;
    color: var(--aman-navy);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.cat-slider-controls button:hover {
    background: var(--aman-teal);
    color: var(--white);
    border-color: var(--aman-teal);
}

.cat-slider-wrap {
    margin: 0;
    position: relative;
}

.cat-slider-wrap .swiper {
    padding: 4px 0 24px;
}

.cat-slider-wrap .swiper-slide {
    height: auto;
}

.cat-slide-inner {
    min-height: 130px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    padding: 4px 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.cat-image-box {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: #f6fafb;
    border: 2px solid #e6f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: 0.25s;
}

.cat-image-box::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: 0.25s;
}

.cat-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: 0.25s;
}

.cat-image-box i {
    color: var(--aman-teal);
    font-size: 34px;
}

.cat-slide-inner:hover .cat-image-box {
    background: #ffffff;
    border-color: var(--aman-teal);
    box-shadow: 0 10px 24px rgba(0, 60, 88, 0.12);
}

.cat-slide-inner:hover .cat-image-box::after {
    border-color: rgba(0, 181, 209, 0.25);
}

.cat-slide-inner:hover .cat-image-box img {
    transform: scale(1.06);
}

.cat-slide-inner .cat-name {
    max-width: 110px;
    min-height: 34px;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;
    color: var(--aman-text);
    text-align: center;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cat-slider-wrap .swiper-pagination-bullet {
    width: 18px;
    height: 3px;
    border-radius: 999px;
}

.cat-slider-wrap .swiper-pagination-bullet-active {
    background: var(--aman-teal);
}

.products-slider-wrap {
    margin-bottom: 30px;
}

.products-slider-wrap .swiper-slide {
    height: auto;
}

.ads-section {
    margin: 30px 0;
}

.ads-section .ad-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Category Page */
.breadcrumb {
    margin: 20px 0;
    font-size: 13px;
    color: var(--aman-subtext);
}

.breadcrumb a {
    color: var(--aman-teal);
    font-weight: 600;
    transition: 0.2s;
}

.breadcrumb a:hover {
    color: var(--aman-navy);
}

.breadcrumb span {
    margin: 0 5px;
    font-size: 10px;
}

.category-wrapper {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.sidebar {
    width: 280px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--aman-border);
    padding: 20px;
}

.main-content {
    flex: 1;
    min-width: 0;
}

.filter-sec {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--bg-gray);
    padding-bottom: 15px;
}

.filter-sec:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-sec.collapsed .filter-list,
.filter-sec.collapsed .price-inputs {
    display: none;
}

.filter-title {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--aman-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.filter-title i {
    font-size: 12px;
    color: var(--aman-subtext);
    transition: 0.2s;
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--aman-text);
}

.filter-list .chk-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.filter-list input[type="checkbox"] {
    accent-color: var(--aman-teal);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.filter-count {
    font-size: 11px;
    color: var(--aman-subtext);
    background: var(--bg-gray);
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
}

.price-inputs {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-inputs input {
    flex: 1;
    width: 100%;
    height: 35px;
    border: 1px solid var(--aman-border);
    border-radius: 6px;
    padding: 0 10px;
    font-family: 'Cairo';
    font-size: 13px;
    text-align: center;
}

.price-inputs span {
    font-weight: 700;
    color: var(--aman-subtext);
}

.cat-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid var(--aman-border);
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.cat-title h1 {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
}

.cat-title span {
    font-size: 13px;
    font-weight: 600;
    color: var(--aman-subtext);
    margin-right: 10px;
}

.cat-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cat-sort label {
    font-size: 13px;
    font-weight: 700;
    color: var(--aman-text);
}

.cat-sort select {
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid var(--aman-border);
    font-family: 'Cairo';
    font-size: 13px;
    outline: none;
    background: var(--bg-gray);
    cursor: pointer;
}

.category-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.product-card-item {
    position: relative;
}

.load-more-wrap {
    text-align: center;
    margin: 30px 0;
}

.btn-load-more {
    background: var(--white);
    color: var(--aman-teal);
    border: 2px solid var(--aman-teal);
    border-radius: 8px;
    padding: 10px 30px;
    font-family: 'Cairo';
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.btn-load-more:hover {
    background: var(--aman-teal);
    color: var(--white);
}

.category-content {
    background: var(--white);
    border: 1px solid var(--aman-border);
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.8;
}

.category-faqs {
    margin-top: 30px;
}

.category-faqs h2 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--aman-border);
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-q {
    padding: 12px 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
}

.faq-q i {
    transition: 0.3s;
    font-size: 12px;
    color: var(--aman-subtext);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    padding: 0 15px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--aman-subtext);
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 15px 12px;
}

.faq-item.open .faq-q i {
    transform: rotate(180deg);
}

.category-ads {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.category-ads .ad-item {
    text-align: center;
    padding: 15px;
    background: var(--white);
    border: 1px solid var(--aman-border);
    border-radius: 12px;
}

.mobile-filters-bar {
    display: none;
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    padding: 10px 15px;
    border-bottom: 1px solid var(--aman-border);
    gap: 8px;
    align-items: center;
    overflow-x: auto;
}

.mobile-filter-toggle {
    background: var(--aman-teal);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 8px 15px;
    font-family: 'Cairo';
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.mobile-filter-dropdown {
    flex-shrink: 0;
}

.mobile-filter-dropdown select {
    padding: 8px 10px;
    border: 1px solid var(--aman-border);
    border-radius: 6px;
    font-family: 'Cairo';
    font-size: 12px;
    background: var(--bg-gray);
    cursor: pointer;
}

.mobile-filters-bar.expanded {
    flex-wrap: wrap;
}

/* ========================================
   Product Page - Professional Design
   ======================================== */
.prod-page {
    padding-bottom: 0;
}

.prod-breadcrumb {
    background: var(--white);
    border-bottom: 1px solid var(--aman-border);
    padding: 10px 0;
    font-size: 12px;
    color: var(--aman-subtext);
    margin-bottom: 16px;
}

.prod-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.prod-breadcrumb a {
    color: var(--aman-teal);
    font-weight: 600;
    transition: 0.2s;
}

.prod-breadcrumb a:hover {
    color: var(--aman-navy);
}

.prod-breadcrumb i {
    font-size: 8px;
    opacity: 0.5;
}

.prod-breadcrumb span {
    color: var(--aman-text);
    font-weight: 600;
}

.prod-hero {
    display: grid;
    grid-template-columns: 44% 1fr;
    gap: 20px;
    margin-bottom: 20px;
    align-items: start;
}

.prod-gallery {
    position: sticky;
    top: 16px;
    z-index: 1;
}

.prod-gallery-inner {
    background: var(--white);
    border: 1px solid var(--aman-border);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
}

.prod-main-img {
    flex: 1;
    min-width: 0;
    aspect-ratio: 1;
    max-height: 440px;
    background: var(--bg-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: crosshair;
}

.prod-main-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.15s ease;
}

.prod-img-zoom-hint {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    opacity: 0;
    transition: 0.2s;
}

.prod-main-img:hover .prod-img-zoom-hint {
    opacity: 1;
}

.prod-badge-discount {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--aman-red);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    z-index: 2;
}

.prod-thumbs {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 60px;
    flex-shrink: 0;
    max-height: 440px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.prod-thumb {
    width: 60px;
    height: 60px;
    background: var(--bg-gray);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.2s;
    overflow: hidden;
}

.prod-thumb img {
    max-height: 52px;
    max-width: 52px;
    object-fit: contain;
}

.prod-thumb:hover,
.prod-thumb.active {
    border-color: var(--aman-teal);
}

.prod-info {
    min-width: 0;
}

.prod-info-card {
    background: var(--white);
    border: 1px solid var(--aman-border);
    border-radius: 12px;
    padding: 18px 20px;
}

.prod-cat-tag {
    color: var(--aman-teal);
    font-weight: 700;
    font-size: 11px;
    margin-bottom: 4px;
    display: inline-block;
}

.prod-title {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.45;
    color: var(--aman-text);
}

.prod-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.prod-stars {
    display: flex;
    align-items: center;
    gap: 1px;
    color: #ffc107;
    font-size: 12px;
}

.prod-stars span {
    color: var(--aman-subtext);
    font-size: 11px;
    font-weight: 600;
    margin-right: 4px;
}

.prod-sku {
    font-size: 11px;
    color: var(--aman-subtext);
    font-weight: 600;
}

.prod-price-area {
    background: #f8fffe;
    border: 1px solid #e0f5f3;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 10px;
}

.prod-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.prod-old-price {
    text-decoration: line-through;
    color: var(--aman-subtext);
    font-size: 14px;
    font-weight: 600;
}

.prod-cur-price {
    font-size: 26px;
    font-weight: 900;
    color: var(--aman-text);
    line-height: 1;
}

.prod-cur-price small {
    font-size: 13px;
    font-weight: 700;
    margin-right: 3px;
}

.prod-save-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--aman-red);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.prod-save-tag i {
    font-size: 10px;
}

.prod-final-price {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #28a745;
    background: #d4edda;
    padding: 6px 10px;
    border-radius: 6px;
}

.prod-stock-line {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.prod-stock-inline {
    margin-bottom: 0;
    font-size: 11px;
    font-weight: 700;
}

.prod-stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.prod-stock-dot.in-stock {
    background: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15);
}

.prod-stock-dot.out-stock {
    background: var(--aman-red);
    box-shadow: 0 0 0 3px rgba(230, 30, 42, 0.15);
}

.prod-specs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.prod-spec {
    background: var(--bg-gray);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid #eaeaea;
}

.prod-coupons {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bg-gray);
}

.prod-coupons-head {
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.prod-coupons-head i {
    color: var(--aman-orange);
    font-size: 13px;
}

.prod-coupons-list {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.prod-coupon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff8f0;
    border: 1px dashed var(--aman-orange);
    border-radius: 6px;
    padding: 6px 8px;
    gap: 6px;
    flex: 1;
    min-width: 180px;
}

.prod-coupon-info {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.prod-coupon-val {
    background: var(--aman-orange);
    color: var(--white);
    padding: 2px 7px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.prod-coupon-name {
    font-size: 10px;
    font-weight: 600;
    color: var(--aman-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.prod-coupon-apply {
    background: var(--aman-teal);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 3px 12px;
    font-family: 'Cairo';
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.2s;
    flex-shrink: 0;
}

.prod-coupon-apply:hover {
    background: #00a0b8;
}

.prod-coupon-msg {
    margin-top: 6px;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prod-coupon-msg button {
    background: transparent;
    border: 1px solid;
    border-radius: 3px;
    padding: 1px 8px;
    font-family: 'Cairo';
    font-size: 10px;
    cursor: pointer;
}

.prod-coupon-ok {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.prod-coupon-ok button {
    color: #155724;
    border-color: #c3e6cb;
}

.prod-coupon-err {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.prod-installment {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bg-gray);
}

.prod-installment-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    cursor: pointer;
    user-select: none;
}

.prod-installment-toggle span {
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
}

.prod-installment-toggle span i {
    color: var(--aman-orange);
    font-size: 15px;
}

.prod-toggle-arrow {
    font-size: 10px;
    color: var(--aman-subtext);
    transition: transform 0.2s;
}

.prod-toggle-open .prod-toggle-arrow {
    transform: rotate(180deg);
}

.prod-installment-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.prod-installment-open {
    max-height: none !important;
}

.prod-toggle-open .prod-installment-body {
    padding-top: 8px;
}

.prod-pay-options {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.prod-pay-opt {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 8px;
    border: 1px solid var(--aman-border);
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.prod-pay-opt:hover {
    border-color: var(--aman-teal);
}

.prod-pay-opt input[type="radio"] {
    display: none;
}

.prod-pay-dot {
    width: 16px;
    height: 16px;
    border: 2px solid var(--aman-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: 0.2s;
}

.prod-pay-opt input[type="radio"]:checked + .prod-pay-dot {
    border-color: var(--aman-teal);
}

.prod-pay-opt input[type="radio"]:checked + .prod-pay-dot::after {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--aman-teal);
    border-radius: 50%;
}

.prod-pay-detail {
    display: flex;
    flex-direction: column;
}

.prod-pay-detail strong {
    font-size: 12px;
}

.prod-pay-detail span {
    font-size: 12px;
    font-weight: 700;
    color: var(--aman-orange);
}

.prod-pay-detail small {
    font-size: 10px;
    color: var(--aman-subtext);
}

.prod-pay-bank-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
    border: 1px solid var(--aman-border);
    background: var(--white);
    padding: 2px;
}

.prod-price-discounted {
    color: #28a745 !important;
}

.cash-new-price {
    color: #28a745;
    font-weight: 800;
}

.cash-old-price {
    text-decoration: line-through;
    color: var(--aman-subtext);
    font-size: 10px;
    font-weight: 600;
    margin-right: 4px;
}

.prod-pay-hidden {
    filter: blur(2px);
    pointer-events: none;
    opacity: 0.5;
}

.prod-pay-more {
    text-align: center;
    padding-top: 6px;
    background: none;
    border: none;
    color: var(--aman-teal);
    font-family: 'Cairo';
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
}

.prod-pay-more:hover {
    text-decoration: underline;
}

.prod-buy-section {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    align-items: center;
}

.prod-qty {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid var(--aman-border);
    border-radius: 8px;
    height: 42px;
    background: var(--white);
    overflow: hidden;
    flex-shrink: 0;
}

.prod-qty-btn {
    width: 36px;
    flex-shrink: 0;
    background: var(--bg-gray);
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    color: var(--aman-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.prod-qty-btn:hover {
    background: var(--aman-teal);
    color: var(--white);
}

.prod-qty-val {
    width: 40px;
    flex-shrink: 0;
    border: none;
    border-left: 1px solid var(--aman-border);
    border-right: 1px solid var(--aman-border);
    text-align: center;
    font-weight: 800;
    font-family: 'Cairo';
    font-size: 15px;
    outline: none;
    -moz-appearance: textfield;
    appearance: textfield;
    background: var(--white);
    color: var(--aman-text);
    line-height: 42px;
    padding: 0;
}

.prod-qty-val::-webkit-outer-spin-button,
.prod-qty-val::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.prod-add-cart {
    flex: 1;
    background: var(--aman-teal);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: 'Cairo';
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 42px;
    transition: 0.2s;
}

.prod-add-cart:hover {
    background: #00a0b8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 181, 209, 0.3);
}

.prod-wish {
    width: 42px;
    height: 42px;
    border: 1px solid var(--aman-border);
    background: var(--white);
    border-radius: 8px;
    font-size: 16px;
    color: var(--aman-subtext);
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.prod-wish:hover {
    color: var(--aman-red);
    border-color: var(--aman-red);
}

.prod-trust-strip {
    display: flex;
    gap: 0;
    background: var(--bg-gray);
    border-radius: 8px;
    overflow: hidden;
}

.prod-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    padding: 8px 10px;
    border-left: 1px solid var(--aman-border);
}

.prod-trust-item:last-child {
    border-left: none;
}

.prod-trust-item i {
    color: var(--aman-teal);
    font-size: 15px;
    flex-shrink: 0;
}

.prod-trust-item strong {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--aman-text);
    line-height: 1.2;
}

.prod-trust-item span {
    display: block;
    font-size: 9px;
    color: var(--aman-subtext);
    line-height: 1.2;
}

/* Tabs */
.prod-tabs-section {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--aman-border);
    margin-bottom: 20px;
    overflow: hidden;
}

.prod-tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--aman-border);
    overflow-x: auto;
}

.prod-tab-btn {
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--aman-subtext);
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    background: none;
    border: none;
    font-family: 'Cairo';
    transition: 0.2s;
}

.prod-tab-btn:hover {
    color: var(--aman-text);
}

.prod-tab-btn.active {
    color: var(--aman-teal);
}

.prod-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--aman-teal);
    border-radius: 3px 3px 0 0;
}

.prod-tabs-body {
    padding: 16px 20px;
}

.prod-tab-pane {
    display: none;
    font-size: 13px;
    line-height: 1.8;
    color: var(--aman-text);
}

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

.prod-desc-content {
    white-space: pre-line;
}

.prod-specs-content {
    white-space: pre-line;
}

/* Reviews */
.prod-review {
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-gray);
}

.prod-review:last-child {
    border-bottom: none;
}

.prod-review-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.prod-review-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--aman-teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}

.prod-review-meta {
    display: flex;
    flex-direction: column;
}

.prod-review-meta strong {
    font-size: 12px;
}

.prod-review-stars {
    display: flex;
    align-items: center;
    gap: 1px;
    color: #ffc107;
    font-size: 10px;
}

.prod-review-date {
    font-size: 10px;
    color: var(--aman-subtext);
    margin-right: 6px;
}

.prod-review-title {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 3px;
}

.prod-review-text {
    font-size: 12px;
    color: var(--aman-subtext);
    line-height: 1.6;
}

/* Related */
.prod-related {
    margin-bottom: 30px;
}

.prod-related-head {
    margin-bottom: 14px;
}

.prod-related-head h2 {
    font-size: 18px;
    font-weight: 800;
}

/* Mobile Sticky Bar */
.prod-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--aman-border);
    padding: 8px 15px;
    z-index: 999;
    gap: 10px;
    align-items: center;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
}

.prod-mobile-price {
    font-size: 16px;
    font-weight: 900;
    white-space: nowrap;
}

.prod-mobile-price small {
    font-size: 11px;
    font-weight: 700;
}

.prod-mobile-add {
    flex: 1;
    background: var(--aman-teal);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-family: 'Cairo';
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: 0.2s;
}

.prod-mobile-add:hover {
    background: #00a0b8;
}

/* Cart Toast Notification */
#cartToast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--aman-navy);
    color: var(--white);
    padding: 14px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    white-space: nowrap;
}

#cartToast.cart-toast-show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

#cartToast i {
    color: #28a745;
    font-size: 18px;
}

#cartToast a {
    color: var(--aman-teal);
    font-weight: 800;
    text-decoration: underline;
}

/* Cart Page */
.cart-page {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.cart-items-wrap {
    flex: 1;
    min-width: 0;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--aman-border);
}

.cart-empty i {
    font-size: 60px;
    color: var(--aman-border);
    margin-bottom: 20px;
}

.cart-empty h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}

.cart-empty p {
    color: var(--aman-subtext);
    margin-bottom: 20px;
}

.btn-continue {
    background: var(--aman-teal);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    transition: 0.2s;
}

.btn-continue:hover {
    background: #00a0b8;
}

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

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    border: 1px solid var(--aman-border);
    border-radius: 12px;
    padding: 15px;
    position: relative;
    transition: 0.2s;
}

.cart-item:hover {
    border-color: var(--aman-teal);
}

.cart-item-img {
    width: 90px;
    height: 90px;
    min-width: 90px;
    background: var(--bg-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-item-img img {
    max-height: 80px;
    max-width: 80px;
    object-fit: contain;
}

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

.cart-item-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-price {
    font-size: 13px;
    color: var(--aman-subtext);
    margin-bottom: 4px;
}

.cart-item-coupon {
    font-size: 11px;
    font-weight: 700;
    color: var(--aman-orange);
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cart-item-coupon i {
    font-size: 10px;
}

.cart-item-payment {
    font-size: 11px;
    font-weight: 700;
    color: var(--aman-teal);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cart-item-payment i {
    font-size: 10px;
}

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

.cart-qty-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--aman-border);
    border-radius: 6px;
    background: var(--bg-gray);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.cart-qty-btn:hover {
    background: var(--aman-teal);
    color: var(--white);
    border-color: var(--aman-teal);
}

.cart-qty-val {
    font-size: 16px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.cart-item-total {
    font-size: 16px;
    font-weight: 800;
    color: var(--aman-orange);
    margin-top: 5px;
}

.cart-item-remove {
    position: absolute;
    top: 15px;
    left: 15px;
    background: none;
    border: none;
    color: var(--aman-subtext);
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    transition: 0.2s;
}

.cart-item-remove:hover {
    color: var(--aman-red);
}

.cart-summary {
    width: 350px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--aman-border);
    padding: 25px;
    position: sticky;
    top: 20px;
}

.cart-summary h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--aman-border);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--aman-subtext);
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 900;
    padding-top: 15px;
    border-top: 1px solid var(--aman-border);
    margin-top: 10px;
    margin-bottom: 20px;
}

.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--aman-teal);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-family: 'Cairo';
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s;
    margin-bottom: 10px;
}

.btn-checkout:hover {
    background: #00a0b8;
}

.btn-continue-shop {
    display: block;
    text-align: center;
    color: var(--aman-teal);
    font-weight: 700;
    font-size: 14px;
}

/* Checkout Page */
.checkout-page {
    margin-bottom: 40px;
}

#checkoutForm {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.checkout-main {
    flex: 1;
    min-width: 0;
}

.checkout-section {
    background: var(--white);
    border: 1px solid var(--aman-border);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.checkout-section h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--aman-text);
}

.checkout-section h3 i {
    color: var(--aman-teal);
    font-size: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--aman-text);
}

.required {
    color: var(--aman-red);
}

.form-group input,
.form-group select,
.form-group textarea {
    height: 42px;
    border: 1px solid var(--aman-border);
    border-radius: 8px;
    padding: 0 12px;
    font-family: 'Cairo';
    font-size: 14px;
    outline: none;
    transition: 0.2s;
    background: var(--bg-gray);
}

.form-group textarea {
    height: auto;
    padding: 10px 12px;
    resize: vertical;
    min-height: 80px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--aman-teal);
    box-shadow: 0 0 0 2px rgba(0, 181, 209, 0.1);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 1px solid var(--aman-border);
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.payment-option:hover {
    border-color: var(--aman-teal);
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--aman-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.2s;
}

.payment-option input[type="radio"]:checked+.payment-radio-custom {
    border-color: var(--aman-teal);
}

.payment-option input[type="radio"]:checked+.payment-radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--aman-teal);
    border-radius: 50%;
}

.payment-option strong {
    font-size: 14px;
    display: block;
}

.payment-option p {
    font-size: 12px;
    color: var(--aman-subtext);
    margin: 0;
}

.checkout-sidebar {
    width: 380px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
}

.checkout-summary-box {
    background: var(--white);
    border: 1px solid var(--aman-border);
    border-radius: 12px;
    padding: 25px;
}

.checkout-summary-box h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--aman-border);
}

.checkout-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--bg-gray);
}

.checkout-item-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.checkout-item-qty {
    background: var(--bg-gray);
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    margin-left: 5px;
}

.checkout-item-price {
    font-weight: 700;
    white-space: nowrap;
}

.checkout-item-coupon-badge {
    background: var(--aman-install-bg);
    color: var(--aman-orange);
    font-size: 10px;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.checkout-item-payment-badge {
    background: #e3f6fb;
    color: var(--aman-teal);
    font-size: 10px;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.checkout-totals {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--aman-border);
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.checkout-grand-total {
    font-size: 20px;
    font-weight: 900;
    padding-top: 10px;
    border-top: 1px solid var(--aman-border);
    margin-top: 10px;
}

.btn-place-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: var(--aman-teal);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-family: 'Cairo';
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 20px;
}

.btn-place-order:hover {
    background: #00a0b8;
}

.btn-place-order:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Thank You Page */
.thx-page {
    text-align: center;
    padding: 80px 15px;
    max-width: 600px;
    margin: 0 auto;
}

.thx-icon {
    margin-bottom: 20px;
}

.thx-icon i {
    font-size: 80px;
    color: #28a745;
}

.thx-page h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--aman-text);
}

.thx-order-id {
    font-size: 18px;
    color: var(--aman-teal);
    font-weight: 700;
    margin-bottom: 15px;
}

.thx-msg {
    font-size: 15px;
    color: var(--aman-subtext);
    line-height: 1.8;
    margin-bottom: 30px;
}

.thx-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: var(--white);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    transition: 0.2s;
}

.btn-whatsapp:hover {
    background: #20bd5a;
}

.floating-contact {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-contact-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    font-size: 24px;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.floating-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    filter: brightness(1.04);
}

.floating-whatsapp {
    background: #25d366;
}

.floating-call {
    background: var(--aman-teal);
}

/* Blog Page */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--aman-border);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-color: var(--aman-teal);
    transform: translateY(-2px);
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-body h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-body p {
    font-size: 13px;
    color: var(--aman-subtext);
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--aman-subtext);
}

.blog-card-meta i {
    margin-left: 3px;
}

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

.blog-empty i {
    font-size: 50px;
    color: var(--aman-border);
    margin-bottom: 15px;
    display: block;
}

.blog-empty p {
    color: var(--aman-subtext);
    font-size: 16px;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.blog-page-btn {
    padding: 8px 18px;
    border: 1px solid var(--aman-border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
}

.blog-page-btn:hover {
    border-color: var(--aman-teal);
    color: var(--aman-teal);
}

.blog-page-num {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--aman-border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.2s;
}

.blog-page-num:hover {
    border-color: var(--aman-teal);
    color: var(--aman-teal);
}

.blog-page-num.active {
    background: var(--aman-teal);
    color: var(--white);
    border-color: var(--aman-teal);
}

/* Blog Article */
.blog-article {
    background: var(--white);
    border: 1px solid var(--aman-border);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
}

.blog-article-header {
    margin-bottom: 25px;
}

.blog-article-header h1 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-article-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--aman-subtext);
    flex-wrap: wrap;
}

.blog-article-meta i {
    margin-left: 5px;
}

.blog-article-img {
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
}

.blog-article-img img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-article-content {
    font-size: 16px;
    line-height: 2;
    color: var(--aman-text);
}

.blog-article-content h2 {
    font-size: 22px;
    font-weight: 800;
    margin: 25px 0 15px;
    color: var(--aman-navy);
}

.blog-article-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 20px 0 10px;
}

.blog-article-content p {
    margin-bottom: 15px;
}

.blog-article-content ul,
.blog-article-content ol {
    margin-bottom: 15px;
    padding-right: 20px;
}

.blog-article-content li {
    margin-bottom: 8px;
}

.blog-article-share {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--aman-border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
}

.blog-article-share a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aman-text);
    transition: 0.2s;
}

.blog-article-share a:hover {
    background: var(--aman-teal);
    color: var(--white);
}

/* Static Page */
.static-page {
    background: var(--white);
    border: 1px solid var(--aman-border);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
}

.static-page h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--aman-border);
}

.static-page-content {
    font-size: 15px;
    line-height: 2;
    color: var(--aman-text);
}

.static-page-content h2 {
    font-size: 22px;
    font-weight: 800;
    margin: 25px 0 15px;
    color: var(--aman-navy);
}

.static-page-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 20px 0 10px;
}

.static-page-content p {
    margin-bottom: 15px;
}

.static-page-content ul,
.static-page-content ol {
    margin-bottom: 15px;
    padding-right: 20px;
}

.static-page-content li {
    margin-bottom: 8px;
}

.static-page-content a {
    color: var(--aman-teal);
    font-weight: 600;
}

.static-page-content a:hover {
    text-decoration: underline;
}

/* Responsive for Phase 3 */
@media (max-width: 991px) {
    .cart-page {
        flex-direction: column;
        align-items: stretch;
    }

    .cart-summary {
        width: 100%;
        position: static;
    }

    #checkoutForm {
        flex-direction: column;
        align-items: stretch;
    }

    .checkout-sidebar {
        width: 100%;
        position: static;
    }

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

    .blog-article {
        padding: 25px;
    }

    .static-page {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .home-hero-pair,
    .home-hero-pair-single {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-hero-pair-item,
    .home-hero-pair-single .home-hero-pair-item {
        grid-column: auto;
        aspect-ratio: 16 / 9;
    }

    .home-cats-band {
        margin: 20px 0 8px;
        padding: 14px 0 6px;
    }

    .home-cats-header {
        align-items: center;
        margin-top: 28px;
        margin-bottom: 6px;
    }

    .cat-slider-controls button {
        width: 32px;
        height: 32px;
    }

    .cat-slide-inner {
        min-height: 104px;
        gap: 5px;
        padding: 4px 0;
    }

    .cat-image-box {
        width: 68px;
        height: 68px;
        padding: 0;
    }

    .cat-slide-inner .cat-name {
        max-width: 86px;
        min-height: 30px;
        font-size: 11px;
    }

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

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-article-header h1 {
        font-size: 22px;
    }

    .thx-page {
        padding: 50px 15px;
    }

    .thx-icon i {
        font-size: 60px;
    }

    .cart-item {
        flex-wrap: wrap;
    }

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

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .category-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }

    .search-wrapper {
        order: 3;
        max-width: 100%;
        width: 100%;
    }

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

    .prod-hero {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .prod-gallery {
        position: static;
    }

    .prod-gallery-inner {
        flex-direction: column;
    }

    .prod-thumbs {
        flex-direction: row;
        width: 100%;
        max-height: none;
        order: 2;
    }

    .prod-main-img {
        max-height: 320px;
    }

    .category-wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        display: none;
    }

    .mobile-filters-bar {
        display: flex;
    }
}

@media (max-width: 768px) {
    .header-content {
        gap: 10px;
    }

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

    .checkout-section {
        padding: 15px;
    }

    .checkout-item-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .checkout-item-price {
        align-self: flex-end;
    }

    .cart-item {
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px;
    }

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

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

    .cart-item-info {
        flex: 1;
        min-width: calc(100% - 85px);
    }

    .cart-item-remove {
        position: absolute;
        top: 8px;
        left: 8px;
    }

    .cart-summary {
        padding: 15px;
    }

    .logo-img {
        height: 34px;
    }

    .search-wrapper {
        order: 0;
        flex: 0 0 38px;
        width: 38px;
        max-width: 38px;
    }

    .search-wrapper form {
        height: 38px;
    }

    .search-wrapper input {
        width: 38px;
        height: 38px;
        padding: 0;
        opacity: 0;
        pointer-events: none;
    }

    .search-submit {
        right: 0;
        width: 38px;
        height: 38px;
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.14);
        color: var(--white);
    }

    .search-wrapper.search-open {
        order: 3;
        flex: 1 0 100%;
        width: 100%;
        max-width: 100%;
    }

    .search-wrapper.search-open input {
        width: 100%;
        padding: 0 42px 0 15px;
        opacity: 1;
        pointer-events: auto;
    }

    .search-wrapper.search-open .search-submit {
        border-color: transparent;
        background: transparent;
        color: #777;
    }

    .header-tools {
        gap: 8px;
    }

    .tool-icon {
        width: 38px;
        height: 38px;
    }

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

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

    .nav-links {
        flex: 0 0 auto;
        overflow: visible;
        white-space: nowrap;
        flex-wrap: nowrap;
    }

    .sub-nav-content {
        align-items: center;
        gap: 4px;
        overflow-x: auto;
        overflow-y: visible;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .sub-nav-content::-webkit-scrollbar {
        display: none;
    }

    .all-cats {
        flex: 0 0 auto;
        padding: 10px;
        white-space: nowrap;
    }

    .nav-links li a,
    .nav-drop-trigger {
        padding: 10px 8px;
        white-space: nowrap;
    }

    .nav-dropdown {
        position: static;
    }

    .nav-dropdown-menu {
        position: fixed;
        top: 122px;
        right: 15px;
        left: 15px;
        width: auto;
        max-height: 55vh;
        margin-top: 0;
    }

    .top-bar {
        font-size: 11px;
    }

    .header-tools {
        gap: 10px;
    }

    .section-header h2 {
        font-size: 18px;
    }

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

    .prod-info-card {
        padding: 14px;
    }

    .prod-cur-price {
        font-size: 22px;
    }

    .prod-main-img {
        max-height: 250px;
    }

    .prod-trust-strip {
        flex-wrap: nowrap;
    }

    .prod-trust-item {
        min-width: 0;
        border-left: 1px solid var(--aman-border);
        border-bottom: none;
        padding: 6px 6px;
        gap: 4px;
    }

    .prod-trust-item i {
        font-size: 12px;
    }

    .prod-trust-item strong {
        font-size: 8px;
    }

    .prod-trust-item span {
        font-size: 7px;
    }

    .prod-buy-section {
        flex-wrap: wrap;
    }

    .prod-buy-section .prod-add-cart {
        flex: 1;
        min-width: 140px;
    }

    .prod-mobile-bar {
        display: flex;
    }

    .floating-contact {
        right: 12px;
        bottom: 76px;
        gap: 8px;
    }

    .floating-contact-btn {
        width: 46px;
        height: 46px;
        font-size: 21px;
    }

    .prod-page {
        padding-bottom: 60px;
    }

    .cat-top-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}
