/* ================= GOOGLE FONT ================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ================= GLOBAL ================= */

body {
    margin: 0;
    font-family: 'Playfair Display', serif;
    background-color: #fdf8f8;

    background-image: 
        url("images/floral-bg.png"),
        url("images/floral-bg.png");

    background-position: 
        top left,
        top right;

    background-repeat: 
        no-repeat,
        no-repeat;

    background-size: 
        700px,
        700px;

    background-attachment: scroll;
    /*padding-top: 140px;*/
}


html, body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 92%;
    max-width: 1300px;
    margin: auto;
}

/* ================= HEADER ================= */




/* LEFT & RIGHT MENU */

.header-left,
.header-right {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 40px;                    /* More spacing */
}

.header-left {
    justify-content: flex-start;
}

.header-right {
    justify-content: flex-end;
}

/* MENU LINKS */

.header-left a,
.header-right a {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;              /* Increased */
    font-weight: 500;             /* Stronger */
    letter-spacing: 1.5px;
    color: #8f6b6b;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.header-left a:hover,
.header-right a:hover {
    color: #c48b8b;
}

/* LOGO */

.header-center img {
    height: 140px;                 /* Increased logo size */
}

/* CART ICON */

.cart-icon {
    font-size: 20px;
}

/* ================= HERO FIX ================= */

.hero-slider {
    width: 100%;
    position: relative;
    margin-top: 0;
}

.hero-carousel .slide {
    height: 92vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Remove heavy pink overlay */
.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.55) 25%,
        rgba(255, 255, 255, 0.05) 65%
    );
}

/* ================= OWL ARROWS ================= */

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.owl-nav button {
    position: absolute;
    background: #ffffff !important;
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.owl-nav button:hover {
    background: #c48b8b !important;
    color: #fff !important;
}

.owl-nav .owl-prev {
    left: 30px;
}

.owl-nav .owl-next {
    right: 30px;
}

.owl-nav span {
    font-size: 28px;
    line-height: 45px;
    display: block;
}

/* ================= OWL DOTS ================= */

.owl-dots {
    position: absolute;
    bottom: 25px;
    width: 100%;
    text-align: center;
}

.owl-dot span {
    background: #e5c6c6 !important;
    width: 10px;
    height: 10px;
}

.owl-dot.active span {
    background: #c48b8b !important;
}
/* ================= SECTION TITLES ================= */

.section-title {
    text-align: center;
    font-size: 36px;
    margin-top: 80px;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #8c7a7a;
}

/* ================= GRID ================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    margin-bottom: 80px;
}

/* ================= CATEGORY GRID ================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

/* CATEGORY CARD */

.category-grid .card {
    background: #ffffff;
    border-radius: 22px;
    padding: 20px 20px 25px;
    text-align: center;
    transition: 0.35s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.category-grid .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

/* IMAGE AREA */

.category-grid .image-wrapper {
    position: relative;
    height: 320px;              /* Bigger than product grid */
    border-radius: 18px;
    overflow: hidden;
    background: #f8f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-grid .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* Makes it look premium */
    transition: 0.4s ease;
}

.category-grid .card:hover img {
    transform: scale(1.06);
}

/* WISHLIST */

.category-grid .wishlist {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.category-grid .wishlist:hover {
    background: #c48b8b;
    color: #ffffff;
}

/* TITLE */

.category-grid .card h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 18px 0 6px;
}

/* PRICE */

.category-grid .price {
    font-size: 16px;
    color: #a17878;
    margin-bottom: 16px;
}

/* BUTTON */

.category-grid .btn-secondary {
    background: #d6a1a1;
    border: none;
    padding: 9px 24px;
    color: #ffffff;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.category-grid .btn-secondary:hover {
    background: #b77d7d;
}


/* ================= PRODUCT GRID FIX ================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 60px;
}

/* CARD */

.card {
    background: #fff;
    border-radius: 20px;
    padding: 18px 18px 22px;
    text-align: center;
    transition: 0.35s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* IMAGE AREA */

.image-wrapper {
    position: relative;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f3f3;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes image fill nicely */
    transition: 0.4s ease;
}

.card:hover img {
    transform: scale(1.05);
}

/* WISHLIST BUTTON */

.wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.wishlist:hover {
    background: #c48b8b;
    color: #ffffff;
}

/* TITLE */

.card h3 {
    font-size: 16px;   /* smaller title */
    font-weight: 500;
    margin: 16px 0 6px;
}

/* PRICE */

.price {
    font-size: 15px;
    color: #a17878;
    margin-bottom: 14px;
}

/* BUTTON */

.btn-secondary {
    background: #d6a1a1;
    border: none;
    padding: 8px 22px;
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-secondary:hover {
    background: #b77d7d;
}

.category,
.featured,
.hot-deals {
    background: transparent;
}

/* ================= FOOTER ================= */

.footer {
    position: relative;
    background: #f5e8e8;
    padding: 60px 0;
    text-align: center;
    margin-top: 60px;
    overflow: hidden;
}

/* Floral Left Bottom */
.footer::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 350px;
    height: 350px;
    background: url("../images/floral-bg.png") no-repeat bottom left;
    background-size: contain;
    opacity: 0.12;
    pointer-events: none;
}

/* Floral Right Bottom */
.footer::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 350px;
    height: 350px;
    background: url("../images/floral-bg.png") no-repeat bottom right;
    background-size: contain;
    opacity: 0.12;
    pointer-events: none;
}

.footer p {
    margin: 10px 0;
    color: #7a6666;
    font-size: 14px;
}

.footer a {
    color: #9c6b6b;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer a:hover {
    color: #7f4b4b;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    flex-wrap: wrap;
}



/* ================= HAMBURGER ================= */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #8f6b6b;
    transition: 0.3s ease;
}

/* ================= MOBILE MENU ================= */

/*@media (max-width: 992px) {

    .header-left,
    .header-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.08);
        transition: 0.4s ease;
        z-index: 999;
    }

    .header-left a,
    .header-right a {
        font-size: 18px;
    }

    .header-left.active,
    .header-right.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
    }

    .header-left {
        display: none;
    }

    .header-center img {
        height: 70px;
    }
}*/


/* ================= PRODUCT DETAILS PAGE ================= */

.product-section {
    padding: 80px 0;
}

.product-details-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* LEFT SIDE - GALLERY */
.product-gallery {
    flex: 1;
    min-width: 320px;
}

.main-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #f8f3f3;
}

.main-image {
    position: relative;
    cursor: none;
}

.magnifier {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px solid #d6a1a1;
    background-repeat: no-repeat;
    background-size: 200%;
    display: none;
    pointer-events: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* SMOOTH PREMIUM ZOOM */
.main-image {
    cursor: zoom-in;
}



.main-image:hover img {
    transform: scale(2);
}

.thumbnail-images {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.thumbnail-images img {
    width: 90px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-images img:hover {
    transform: scale(1.08);
    border-color: #d6a1a1;
}

/* RIGHT SIDE - INFO */
.product-info {
    flex: 1;
    min-width: 320px;
}

.product-info h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

.product-info .price {
    font-size: 26px;
    margin: 15px 0;
}

.product-info .description {
    margin-bottom: 20px;
}

/* SIZE BUTTONS */
.sizes {
    margin-bottom: 25px;
}

.sizes button {
    padding: 10px 20px;
    border: 1px solid #e0caca;
    background: #fff;
    border-radius: 30px;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.sizes button:hover,
.sizes button.active {
    background: #d6a1a1;
    color: #fff;
    border-color: #d6a1a1;
}

/* QUANTITY */
.quantity {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.quantity button {
    width: 36px;
    height: 36px;
    border: none;
    background: #e8c4c4;
    cursor: pointer;
    font-size: 16px;
    border-radius: 6px;
}

.quantity input {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    margin: 0 8px;
    height: 36px;
}

/* ADD TO CART */
.add-cart {
    padding: 14px 50px;
    border-radius: 40px;
    font-size: 15px;
    letter-spacing: 1px;
}


/* Floral glow behind main image */
.main-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #f8f3f3;
    z-index: 1;
}

.main-image::before {
    content: "";
    position: absolute;
    width: 140%;
    height: 140%;
    background: url("images/floral-bg.png") no-repeat center;
    background-size: contain;
    opacity: 0.08;
    top: -20%;
    left: -20%;
    z-index: -1;
    pointer-events: none;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 360px;
    height: 100vh;
    background: #fff;
    padding: 40px 25px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: 0.4s ease;
    z-index: 1000;
}

.cart-drawer.active {
    right: 0;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {

    .product-details-container {
        flex-direction: column;
        gap: 40px;
    }

    .main-image {
        border-radius: 18px;
    }

    .thumbnail-images {
        justify-content: center;
    }

    .product-info h1 {
        font-size: 26px;
        text-align: center;
    }

    .price {
        text-align: center;
        font-size: 22px;
    }

    .sizes {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .quantity {
        justify-content: center;
    }

    .add-cart {
        width: 100%;
        text-align: center;
    }
}


/* ================= ENLARGE MAIN PRODUCT IMAGE ================= */

.product-details-container {
    align-items: flex-start;
}

/* Make gallery bigger than info */
.product-gallery {
    flex: 1.3;   /* Increased from 1 */
}

/* Make product info slightly smaller */
.product-info {
    flex: 1;
}

/* Increase image height */
.main-image {
    height: 600px;   /* Adjust 550–650px as you like */
    border-radius: 24px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* Makes it fill beautifully */
}
.product-gallery {
    flex: 1.5;
}

.main-image {
    height: 680px;
}

@media (max-width: 768px) {
    .main-image {
        height: 450px;
    }
}

/* ================= PRODUCT EXTRA SECTION ================= */

.product-extra {
    margin-top: 80px;
}

/* Tabs */
.tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.tab-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding-bottom: 8px;
    border-bottom: 2px solid transparent;
    transition: 0.3s ease;
    color: #8f6b6b;
}

.tab-btn.active {
    border-color: #d6a1a1;
    color: #000;
}

/* Content */
.tab-content {
    display: none;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.tab-content.active {
    display: block;
}

/* Details List */
.tab-content ul {
    list-style: none;
    padding: 0;
}

.tab-content li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #7a6666;
}

/* Review Cards */
.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.review-card h4 {
    margin: 0 0 5px;
}

.review-card span {
    color: #d6a1a1;
}

.review-card p {
    font-size: 14px;
    color: #7a6666;
}

.main-image{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:crosshair;
}

.main-image img{
    width:100%;
    display:block;
    border-radius:20px;
}

/* Premium Glass Lens */
.zoom-lens{
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    pointer-events:none;
    display:none;

    border:3px solid rgba(255,255,255,0.8);
    box-shadow:0 15px 40px rgba(0,0,0,0.25);

    backdrop-filter: blur(4px);
    background-repeat:no-repeat;
    background-size:200%;
    transition: transform 0.08s ease-out;
}

/* Smooth hover transition */
.main-image:hover img{
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* 📱 Mobile behavior */
@media(max-width:768px){
    .zoom-lens{
        width:180px;
        height:180px;
    }
}



/* ================= HEADER PREMIUM ================= */

.arivela-header {
    position: fixed;   /* change from sticky */
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1300px;
    margin: auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEFT & RIGHT LINKS */
.header-left a,
.header-right a {
    margin-right: 25px;
    text-decoration: none;
    color: #6f5b5b;
    font-weight: 500;
    position: relative;
}

/* Hover underline animation */
.header-left a::after,
.header-right a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #d6a1a1;
    transition: 0.3s;
}

button.menu-close {
    display: none;
}

.header-left a:hover::after,
.header-right a:hover::after {
    width: 100%;
}

/* CENTER LOGO */
.header-center img {
    height: 140px;
}

/* MEGA MENU */
.has-dropdown {
    position: relative;
    display: inline-block;
}

.mega-menu {
    position: absolute;
    top: 45px;
    left: 0;
    background: #fff;
    display: flex;
    gap: 60px;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-column h4 {
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    color: #b88a8a;
}

.mega-column ul {
    list-style: none;
    padding: 0;
}

.mega-column li {
    margin-bottom: 8px;
}

/* ICON STYLE */
.icon {
    font-size: 18px;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #6f5b5b;
    transition: 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    padding: 100px 30px;
    box-shadow: -10px 0 50px rgba(0,0,0,0.15);
    transition: right 0.4s ease;
    z-index: 9999;
    overflow-y: auto;
}

/* When active */
.mobile-menu.active {
    right: 0;
}

/* Prevent body scroll when menu open */
body.menu-open {
    overflow: hidden;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 20px;
}

.mobile-dropdown-header {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 15px;
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 300px;
}



/* Hamburger animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px,-6px);
}

.hamburger span {
    transition: 0.3s ease;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}



/* ================= PRODUCT LISTING PAGE ================= */

.listing-page {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    padding: 80px 0;
}

/* ================= FILTER SIDEBAR ================= */

.filter-sidebar {
    background: #ffffff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.05);
    position: sticky;
    top: 120px;
    height: fit-content;
}

.filter-sidebar h3 {
    font-size: 20px;
    margin-bottom: 25px;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group h4 {
    font-size: 15px;
    margin-bottom: 12px;
    color: #a17878;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 14px;
}

/* Color Filter */

.color-options {
    display: flex;
    gap: 10px;
}

.color-filter {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.color-filter.active {
    transform: scale(1.15);
    border-color: #d6a1a1;
}

/* Clear Button */

#clearFilters {
    width: 100%;
    padding: 10px;
    border: none;
    background: #d6a1a1;
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

#clearFilters:hover {
    background: #b77d7d;
}

/* ================= PRODUCT SECTION ================= */

.listing-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.listing-top select {
    padding: 8px 15px;
    border-radius: 25px;
    border: 1px solid #e4d3d3;
    font-family: 'Playfair Display', serif;
}

/* Use your existing product grid style */

.product-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    transition: 0.35s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* Image */

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card:hover .hover-img {
    opacity: 1;
}

/* Sale badge */

.sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #d65c5c;
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
}

/* Wishlist */

.product-image .wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.product-image .wishlist:hover {
    background: #c48b8b;
    color: #fff;
}

/* Info */

.product-info {
    padding: 18px;
}

.product-info h4 {
    margin: 8px 0 5px;
    font-size: 16px;
}

.product-info .brand {
    font-size: 13px;
    color: #a17878;
}

.product-info .price {
    font-size: 15px;
    font-weight: 600;
    margin-top: 8px;
}
