/* ════════════════════════════════════════════
   THEME TOKENS
════════════════════════════════════════════ */
:root {
    --plum: #2d1b4e;
    --plum-mid: #3d1a47;
    --plum-soft: #5a2769;
    --gold: #c9a96e;
    --gold-light: #e2c99a;
    --cream: #faf7f4;
    --blush: #f4ede7;
    --sand: #ede3d9;
    --warm-gray: #c8b8ae;
    --ink: #2d1b4e;
    --ink-2: #4a3535;
    --ink-3: #8a7570;
    --pill: 100px;
    --card: 14px;
    --ease: cubic-bezier(.22, .68, 0, 1.2);
}

h1,
.h1 {
    font-size: 3.6rem !important;
}

/* ════════════════════════════════════════════
   ABOUT PAGE FIXES
════════════════════════════════════════════ */
.team-style-05 img {
    aspect-ratio: 1 / 1.25;
    object-fit: cover !important;
    width: 100% !important;
    height: auto !important;
}

.about-intro-img {
    aspect-ratio: 1 / 1;
    object-fit: cover !important;
    width: 100% !important;
    border-radius: 12px;
}

.designer-section-img {
    aspect-ratio: 1 / 1.1;
    object-fit: cover !important;
    width: 100% !important;
    border-radius: 12px;
}

@media (max-width: 767px) {

    .team-style-05 img,
    .about-intro-img,
    .designer-section-img {
        aspect-ratio: auto;
    }
}

/* ════════════════════════════════════════════
   SHOP & FILTER UI/UX
════════════════════════════════════════════ */
.shop-sidebar {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.shop-filter li {
    margin-bottom: 12px;
}

.shop-filter li a {
    display: flex;
    align-items: center;
    color: var(--ink-2);
    transition: all 0.3s ease;
}

.shop-filter li a:hover {
    color: var(--plum);
    padding-left: 5px;
}

.product-cb {
    width: 18px;
    height: 18px;
    border: 1px solid var(--warm-gray);
    display: inline-block;
    margin-right: 12px;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.product-color-cb {
    border-radius: 50%;
    width: 22px;
    height: 22px;
    border: none;
}

.product-fabric-cb {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--sand);
}

.product-fabric-cb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tag-cloud a {
    background: var(--blush);
    color: var(--ink-2);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    margin-right: 6px;
    margin-bottom: 8px;
    display: inline-block;
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background: var(--plum);
    color: #fff;
    transform: translateY(-2px);
}

.shop-modern .grid-item {
    display: flex !important;
    height: auto !important;
}

/* ════════════════════════════════════════════
   LUXURY PRODUCT CARDS
════════════════════════════════════════════ */
.shop-box {
    background: #fff;
    padding: 0;
    /* Remove padding for edge-to-edge feel */
    border-radius: 14px;
    transition: all 0.4s var(--ease);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.shop-image {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    /* Align with box edges */
    aspect-ratio: 1 / 1.15;
}

.shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.shop-box:hover .shop-image img {
    transform: scale(1.1) rotate(1deg);
}

/* Add to Cart Button Animation */
.shop-buttons-wrap {
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: 20px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    z-index: 10;
}

.shop-box:hover .shop-buttons-wrap {
    bottom: 20px;
    opacity: 1;
}

.shop-buttons-wrap .btn {
    width: 100%;
    backdrop-filter: blur(10px);
    background: rgba(45, 27, 78, 0.85);
    border: none;
    border-radius: 12px;
}

/* Badges Styling */
.lable {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
}

.lable.new {
    background: #5a2769;
    color: #fff;
}

.lable.luxury {
    background: #c9a96e;
    color: #fff;
}

.lable.premium {
    background: var(--plum);
    color: #fff;
}

/* Shop Footer / Details */
.shop-footer {
    padding: 20px;
    margin-top: auto;
    background: #fff;
    z-index: 5;
}

.shop-footer a {
    color: var(--ink);
    font-weight: 600;
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.shop-footer a:hover {
    color: var(--gold);
}

.price {
    font-size: 16px;
    font-weight: 500;
    color: var(--plum-soft);
}

.price del {
    color: var(--warm-gray);
    margin-right: 10px;
    font-weight: 300;
}

/* Hover Effects Overlay */
.shop-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(45, 27, 78, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.shop-box:hover::after {
    opacity: 1;
}

.shop-box:hover {
    box-shadow: 0 20px 40px rgba(45, 27, 78, 0.1);
    transform: translateY(-8px);
}

/* Quick View / Wishlist Icons */
.shop-hover {
    position: absolute;
    top: 15px;
    right: -50px;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    z-index: 10;
}

.shop-box:hover .shop-hover {
    right: 15px;
}

.shop-hover ul li a {
    background: #fff !important;
    color: var(--plum) !important;
    transition: all 0.3s ease;
}

.shop-hover ul li a:hover {
    background: var(--plum) !important;
    color: #fff !important;
}

/* Pagination */
.pagination-style-01 .page-item .page-link {
    width: 40px;
    height: 40px;
    line-height: 38px;
    padding: 0;
    text-align: center;
    border-radius: 50% !important;
    margin: 0 5px;
    border: 1px solid var(--sand);
    color: var(--ink-2);
}

.pagination-style-01 .page-item.active .page-link {
    background: var(--plum);
    border-color: var(--plum);
    color: #fff;
}

/* ════════════════════════════════════════════
    HEADER RESPONSIVE FIXES
    ════════════════════════════════════════════ */
.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    padding: 0 4px;
    z-index: 5;
    border: 1.5px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.opacity-3 {
    opacity: 0.3;
}

@media (min-width: 992px) and (max-width: 1250px) {
    .header-icon .icon>a {
        padding-left: 10px !important;
    }
    .navbar .navbar-nav .nav-link {
        padding: 30px 12px !important;
        font-size: 16px !important;
    }
    .widget-text.icon a.btn {
        padding: 8px 15px !important;
        font-size: 12px !important;
    }
}