/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
/* =========================================
   IGNITE CONTACT FORM
========================================= */
div#ignite-product-review\ ignite-reviews {
    display: none;
}
a#ipp-sticky-btn:hover {
    color: white;
}
.elementor-13 .elementor-element.elementor-element-615cf8d.e-con{
	align-items: flex-end;
}
.ipp-chocolate-short-block{
	background-image: url(https://smihlechocolates.com/wp-content/uploads/2026/06/Whats-in-Ignite_-background.jpg.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

}


.ingredients-section{
    padding:80px 0px;
    overflow:hidden;
}

.ingredients-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.ingredients-track{
    display:flex;
    gap:24px;
    width:max-content;
    will-change:transform;
}

.ingredient-card{
    width:300px;
    flex-shrink:0;
    text-align:center;
	text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
	gap:20px;
}

.ingredient-card img{
    width:100%;
    
    border-radius:15px;
    object-fit:cover;
}

.ingredient-card h3{
    color:#e5b880;
    font-size:20px;
	line-height:24px;
	font-weight:700;
	font-family: 'Playfair Display SC';
	margin:0 !important;
}

.ingredient-card p{
    color:#fff;
    line-height:24px;
	font-size:16px;
	font-weight:400;
	font-family: 'Roboto';
}
h2.ingredients-heading {
    font-size: 30px;
    color: #e5b880;
    line-height: 30px;
	font-family: 'Playfair Display SC';
	margin-bottom:40px;
	margin-top:0px;
	text-align:center;
}

/* Laptop */

@media (max-width:1200px){

    .ingredient-card{
        width:290px;
    }

}

/* Tablet */

@media (max-width:992px){

    .ingredient-card{
        width:260px;
    }

    .ingredient-card h3{
        font-size:20px;
    }
	  .ingredient-card p{
        font-size: 15px;
    }

}

/* Mobile */

@media (max-width:767px){

    .ingredients-section{
        padding:60px 0px;
    }

    .ingredients-track{
        gap:15px;
    }

    .ingredient-card{
        width:220px;
    }

    .ingredient-card img{
        width:100%;
        
    }

    .ingredient-card h3{
        font-size:17px;
    }

    .ingredient-card p{
        font-size:13px;
    }

}


/* Form CSS */
.ignite-contact-form {
    max-width: 720px;
}

/* Row */

.ignite-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
}

/* Two Column Layout */

.ignite-two-col .ignite-form-field {
    width: 50%;
}

/* Field */

.ignite-form-field {
    width: 100%;
}

/* Labels */

.ignite-form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 6px;
}

/* Inputs */

.ignite-contact-form input,
.ignite-contact-form textarea {

    width: 100%;

    height: 52px;

    border: 1.5px solid #d0d0d0;
    border-radius: 4px;

    padding: 12px;

    font-size: 15px;

    transition: 0.2s ease;
}

/* Textarea */

.ignite-contact-form textarea {
    height: auto;
    min-height: 160px;
    resize: vertical;
}

/* Focus */

.ignite-contact-form input:focus,
.ignite-contact-form textarea:focus {

    border-color: #111111;
    outline: none;
}

/* Submit */

.ignite-form-submit {
    margin-top: 10px;
}

.ignite-form-submit input[type="submit"] {

    background: #111111;
    color: #ffffff;

    padding: 14px 36px;

    border: none;
    border-radius: 4px;

    font-size: 14px;
    font-weight: 600;

    text-transform: uppercase;

    cursor: pointer;

    transition: 0.2s ease;
}

.ignite-form-submit input[type="submit"]:hover {
    background: #333333;
}


/* Mobile */

@media (max-width: 640px) {

    .ignite-form-row {
        flex-direction: column;
    }

    .ignite-two-col .ignite-form-field {
        width: 100%;
    }

}

/* =========================================
   FAQ ACCORDION FINAL CLEAN VERSION
========================================= */

.faq-wrapper {
    width: 100%;
}

/* Divider line */

.faq-item {
    border-bottom: 2px solid #c8a96e;
}

/* Remove default summary markers */

.faq-question::marker {
    display: none;
    content: "";
}

.faq-question::-webkit-details-marker {
    display: none;
}

/* Question */

.faq-question {

    position: relative;

    padding: 22px 60px 22px 20px;

    font-size: 18px;
    font-weight: 600;

    cursor: pointer;
    font-family: "Poppins", Sans-serif;
    background: #ffffff; /* Always white */

    transition: 0.25s ease;

}

/* Remove hover background too (Shopify style) */

.faq-question:hover {
    background: #ffffff;
}

/* Right Arrow */

.faq-icon {

    position: absolute;

    right: 20px;
    top: 50%;

    transform: translateY(-50%);

    width: 0;
    height: 0;

    border-left: 8px solid #c8a96e;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;

    transition: 0.25s ease;

}

/* Rotate Arrow When Open */

.faq-item[open] .faq-icon {

    transform: translateY(-50%) rotate(90deg);

}

/* Answer */

.faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 15px;
    line-height: 1.6;
    font-family: "Poppins", Sans-serif;
    color: #333;
}


/* ============================
   IMAGE HOVER CARDS FINAL
============================ */

.hover-card {

    position: relative;

    overflow: hidden;

    border-radius: 24px;

    cursor: pointer;

    transition: 0.4s ease;

}

/* Image */

.hover-card img {

    width: 100%;

    height: 100%;

    display: block;

    transition: 0.4s ease;

}

/* Image Zoom */

.hover-card:hover img {

    transform: scale(1.05);

}

/* Gradient Overlay */

.hover-card::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 50%;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0)
    );

    z-index: 1;

}

/* Hover Lift + Shopify Shadow */

.hover-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 30px 50px rgba(229, 184, 128, 0.2);

}

/* Text Overlay */

.hover-card-text {

    position: absolute;

    bottom: 22px;
    left: 22px;

    color: #E5B880;   /* Updated color */

    font-size: 20px;

    font-weight: 500;

    letter-spacing: 0.5px;

    opacity: 0;

    transform: translateY(20px);

    transition: 0.4s ease;

    z-index: 999;   /* Required fix */

}

/* Show Text on Hover */

.hover-card:hover .hover-card-text {

    opacity: 1;

    transform: translateY(0);

}

/* Mobile Fix (No Hover Devices) */

@media (max-width: 767px) {

.hover-card-text {

    opacity: 1;

    transform: translateY(0);

}

}

/* ================================
   GALLERY CENTER HOVER CARDS
================================ */

.Gallery-card {

    position: relative;

    overflow: hidden;

    border-radius: 24px;

    cursor: pointer;

    transition: 0.4s ease;

}

/* Image */

.Gallery-image {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: 0.4s ease;

}

/* Image Zoom */

.Gallery-card:hover .Gallery-image {

    transform: scale(1.05);

}

/* Center Overlay */

.Gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    opacity: 0;
    transition: 0.4s ease;
    z-index: 1;
    padding: 30px 20px;
}

/* Show Overlay */

.Gallery-card:hover .Gallery-overlay {

    opacity: 1;

}

/* Text */

.Gallery-text {

    color: #E5B880;

    font-size: 22px;

    font-weight: 500;

    letter-spacing: 0.5px;

    z-index: 999;

}

/* Hover Lift + Shopify Shadow */

.Gallery-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 30px 50px rgba(229, 184, 128, 0.2);

}

/* Mobile Fix */

@media (max-width: 767px) {

.Gallery-overlay {

    opacity: 1;

}

}