.elementor-21 .elementor-element.elementor-element-99115dd{--display:flex;--min-height:682px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:flex-end;--gap:20px 20px;--row-gap:20px;--column-gap:20px;}.elementor-21 .elementor-element.elementor-element-99115dd:not(.elementor-motion-effects-element-type-background), .elementor-21 .elementor-element.elementor-element-99115dd > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://ektohfa.com/wp-content/uploads/2026/04/WhatsApp-Image-2026-04-11-at-11.03.21-AM.jpg");}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-21 .elementor-element.elementor-element-359903f{width:var( --container-widget-width, 50.808% );max-width:50.808%;margin:102px 102px calc(var(--kit-widget-spacing, 0px) + 0px) 373px;--container-widget-width:50.808%;--container-widget-flex-grow:0;}.elementor-21 .elementor-element.elementor-element-359903f.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-21 .elementor-element.elementor-element-359903f .elementor-heading-title{font-family:"Playfair Display", Sans-serif;font-size:28px;font-weight:600;color:#FFFFFF;}.elementor-widget-button .elementor-button{background-color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-21 .elementor-element.elementor-element-d5eae8d .elementor-button{background-color:#F3F3F300;font-family:"Roboto", Sans-serif;font-weight:500;line-height:15px;fill:#F3F3F3;color:#F3F3F3;border-style:solid;border-radius:7px 7px 7px 7px;}.elementor-21 .elementor-element.elementor-element-d5eae8d{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 20px) 574px;}.elementor-21 .elementor-element.elementor-element-542f4fd{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-21 .elementor-element.elementor-element-c950751{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-21 .elementor-element.elementor-element-ff7a349{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-21 .elementor-element.elementor-element-7e59254{--display:flex;}.elementor-21 .elementor-element.elementor-element-ea80b93 .elementor-button{background-color:#FCFCFC;fill:#0B0B0B;color:#0B0B0B;border-style:solid;border-width:2px 2px 2px 2px;border-radius:8px 8px 8px 8px;}.elementor-21 .elementor-element.elementor-element-ea80b93{margin:-64px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-21 .elementor-element.elementor-element-99115dd{--content-width:1229px;}}/* Start custom CSS for html, class: .elementor-element-c578aed *//* EXPANDING PANELS STYLING */
.expanding-section {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.intro-tag {
    color: #B68B8B;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 3px;
    font-size: 12px;
    text-transform: uppercase;
}

.intro-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #222B38;
}

.expanding-container {
    display: flex;
    width: 90vw;
    margin: 0 auto;
    height: 600px;
    gap: 15px;
}

.panel {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    flex: 1; /* All panels start equal */
    position: relative;
    transition: all 700ms ease-in-out;
    filter: grayscale(40%); /* Subtle royal look */
}

.panel-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    opacity: 0; /* Content is hidden initially */
    transition: opacity 0.3s ease-in 0.4s;
    max-width: 300px;
}

.panel-tag {
    color: #B68B8B;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.panel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin: 10px 0;
}

.panel p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ddd;
}

.panel-link {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #B68B8B;
    padding-bottom: 5px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* THE MAGIC: HOVER EFFECT */
.panel:hover {
    flex: 3; /* Panel grows when hovered */
    filter: grayscale(0%);
}

.panel:hover .panel-content {
    opacity: 1; /* Content fades in */
}

/* Overlay for readability */
.panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(34, 43, 56, 0.9), transparent 70%);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.panel:hover::before {
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .expanding-container {
        flex-direction: column;
        height: 1000px;
    }
    .panel:hover {
        flex: 5;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-97cb5c4 */.bestsellers-section {
    padding: 80px 5%;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    color: #B68B8B;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #222B38;
    margin: 10px 0;
}

.divider {
    width: 50px;
    height: 2px;
    background: #B68B8B;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: #fff;
    transition: 0.3s;
    position: relative;
}

.product-img {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #B68B8B;
    color: #fff;
    padding: 5px 12px;
    font-size: 10px;
    text-transform: uppercase;
    z-index: 2;
}

.quick-view {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(34, 43, 56, 0.9);
    color: #fff;
    border: none;
    padding: 12px;
    transition: 0.3s;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
}

.product-card:hover .quick-view {
    bottom: 0;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px 0;
    text-align: center;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #222B38;
    margin-bottom: 8px;
}

.price {
    font-weight: 600;
    color: #B68B8B;
    margin-bottom: 15px;
}

.add-to-cart-btn {
    display: block;
    border: 1px solid #222B38;
    color: #222B38;
    text-decoration: none;
    padding: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.add-to-cart-btn:hover {
    background: #222B38;
    color: #fff;
}

@media (max-width: 992px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3a79abf */.review-wall {
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden;
    width: 100%;
}

.review-header {
    text-align: center;
    margin-bottom: 40px;
}

.review-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #222B38;
}

.review-header p {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    font-size: 15px;
}

.marquee-container {
    display: flex;
    margin-bottom: 25px;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 25px;
    white-space: nowrap;
}

/* Row Animations */
.left { animation: scroll-left 50s linear infinite; }
.right { animation: scroll-right 50s linear infinite; }

.review-bubble {
    background: #fff;
    border: 1px solid #f2f2f2;
    padding: 15px 30px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.03);
    min-width: 380px;
}

.rev-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.rev-text { white-space: normal; }

.rev-text strong {
    display: block;
    font-size: 13px;
    color: #222B38;
    margin-bottom: 2px;
}

.rev-text p {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9fd173b */.product-row-section {
    padding: 60px 5%;
    background: #fff;
}

.row-header {
    text-align: center;
    margin-bottom: 40px;
}

.row-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #222B38;
}

.row-line {
    width: 40px;
    height: 2px;
    background: #B68B8B;
    margin: 10px auto;
}

/* THE 5-COLUMN GRID */
.five-col-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Creates 5 equal columns */
    gap: 15px; /* Space between products */
}

.product-item {
    border: 1px solid #f2f2f2;
    background: #fff;
    transition: 0.3s;
    border-radius: 4px;
}

.p-img-box {
    position: relative;
    height: 250px; /* Adjust height for 5 items */
    overflow: hidden;
}

.p-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.sale-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f39c12; /* Market Orange like your image */
    color: #fff;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: bold;
    border-radius: 3px;
    z-index: 2;
}

.p-details {
    padding: 15px 10px;
    text-align: left;
}

.p-details h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Keeps titles on one line */
}

.p-rating {
    color: #f39c12;
    font-size: 11px;
    margin-bottom: 8px;
}

.p-rating span {
    color: #999;
}

.p-pricing {
    font-family: 'Montserrat', sans-serif;
}

.old-p {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
}

.new-p {
    color: #e74c3c; /* Red price for sale */
    font-weight: bold;
    font-size: 14px;
    margin-left: 5px;
}

.product-item:hover {
    box-shadow: 0px 10px 20px rgba(0,0,0,0.05);
}

.product-item:hover img {
    transform: scale(1.05);
}

/* RESPONSIVE: Change to 2 columns on Mobile */
@media (max-width: 1024px) {
    .five-col-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .five-col-grid { grid-template-columns: repeat(2, 1fr); }
    .p-img-box { height: 200px; }
}/* End custom CSS */