/*
 Theme Name:   Botiga Child
 Theme URI:    https://athemes.com/theme/botiga/
 Description: Lightweight child theme for Botiga WooCommerce theme
 Author:       BytNexo Studio
 Author URI:   https://bytnexo.com/
 Template:     botiga
 Version:      1.1.0
 Text Domain:  botiga-child
*/

/* 
 Add custom styles below this line
*/
/*product page css*/
 :root {
	   --font-primary: "Mulish", sans-serif;

  /* Alternative fonts */
  --font-zolando: "Zolando Sans Expanded", sans-serif;
  --font-montserrat: "Montserrat", sans-serif;
  --font-poppins: "Poppins", sans-serif;
  --font-lato: "Lato", sans-serif;
  --font-roboto: "Roboto", sans-serif;
  --font-open-sans: "Open Sans", sans-serif;
  --font-inter: "Inter", sans-serif;
        --primary-orange: rgb(255, 108, 8);
        --primary-orange-rgb: 255, 108, 8;
        --primary-orange-light: rgba(255, 108, 8, 0.1);
        --primary-orange-dark: rgb(230, 90, 0);
        --text-dark: #1a1a1a;
        --text-light: #6c757d;
        --bg-light: #f8f9fa;
        --white: #ffffff;
        --border-color: #dee2e6;
        --shadow-sm: 0 5px 15px rgba(0,0,0,0.05);
        --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
        --shadow-lg: 0 20px 45px rgba(0,0,0,0.15);
        --shadow-orange: 0 10px 30px rgba(255, 108, 8, 0.15);
    }

    body {
        background-color: var(--white);
        overflow-x: hidden;
    }

    .sp-wrapper {
        max-width: 1440px;
        margin: 0 auto;
        padding: 40px 24px;
    }

    /* Breadcrumb */
    .sp-breadcrumb {
        padding: 16px 0;
        margin-bottom: 30px;
        border-bottom: 1px solid var(--border-color);
    }

    .sp-breadcrumb .breadcrumb-item a {
        color: var(--text-light);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.2s;
    }

    .sp-breadcrumb .breadcrumb-item a:hover {
        color: var(--primary-orange);
    }

    .sp-breadcrumb .breadcrumb-item.active {
        color: var(--primary-orange);
        font-weight: 500;
    }

    .sp-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
        color: var(--text-light);
    }

    /* Redesigned Hero Section */
    .sp-hero {
        background: linear-gradient(145deg, var(--white) 0%, var(--bg-light) 100%);
        border-radius: 32px;
        padding: 40px;
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
        position: relative;
        overflow: hidden;
        height: 100%;
    }

    .sp-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 200%;
        background: radial-gradient(circle, rgba(var(--primary-orange-rgb), 0.03) 0%, transparent 70%);
        pointer-events: none;
    }

    .sp-hero-badge {
        display: inline-flex;
        align-items: center;
        background: var(--primary-orange);
        color: var(--white);
        padding: 8px 20px;
        border-radius: 100px;
        font-weight: 600;
        font-size: 14px;
        margin-bottom: 24px;
        gap: 8px;
        border: none;
    }

    .sp-hero h1 {
        font-size: 44px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 20px;
        color: var(--text-dark);
        letter-spacing: -0.02em;
		margin-top:30px;
    }

    .sp-hero h1 .highlight {
        color: var(--primary-orange);
        position: relative;
        display: inline-block;
    }

    .sp-hero-lead {
        font-size: 16px;
        color: var(--text-light);
        margin-bottom: 24px;
        line-height: 1.6;
    }

    /* Compact feature list for left column */
    .sp-hero-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 25px;
    }

    .sp-hero-feature-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: var(--text-dark);
    }

    .sp-hero-feature-item i {
        color: var(--primary-orange);
        font-size: 16px;
    }

    /* Stats Bar */
    .sp-stats {
        display: flex;
        gap: 30px;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--border-color);
    }

    .sp-stat-item {
        display: flex;
        flex-direction: column;
    }

    .sp-stat-number {
        font-size: 24px;
        font-weight: 800;
        color: var(--primary-orange);
        line-height: 1.2;
    }

    .sp-stat-label {
        font-size: 13px;
        color: var(--text-light);
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

    /* Purchase Card Redesign */
    .sp-purchase-card {
        background: var(--white);
        border-radius: 32px;
        padding: 32px;
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow-orange);
        position: sticky;
        top: 100px;
        transition: all 0.3s;
        height: fit-content;
    }

    .sp-purchase-card:hover {
        box-shadow: 0 15px 40px rgba(var(--primary-orange-rgb), 0.2);
    }

    .sp-price-block {
        margin-bottom: 20px;
    }

    .sp-original-price {
        font-size: 18px;
        color: var(--text-light);
        text-decoration: line-through;
        margin-right: 10px;
    }

    .sp-current-price {
        font-size: 52px;
        font-weight: 800;
        color: var(--primary-orange);
        line-height: 1;
        display: inline-block;
    }

    .sp-price-period {
        font-size: 16px;
        font-weight: 500;
        color: var(--text-light);
        margin-left: 5px;
    }

    .sp-price-annual {
        color: var(--text-light);
        font-size: 14px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .sp-price-annual i {
        color: var(--primary-orange);
    }

    .sp-guarantee-badge {
        display: flex;
        align-items: center;
        gap: 10px;
        background: var(--primary-orange-light);
        padding: 12px 16px;
        border-radius: 12px;
        margin-bottom: 25px;
        border: 1px dashed var(--primary-orange);
    }

    .sp-guarantee-badge i {
        color: var(--primary-orange);
        font-size: 24px;
    }

    .sp-guarantee-badge span {
        font-weight: 600;
        color: var(--primary-orange);
    }

    .sp-buy-button {
        width: 100%;
        background: var(--primary-orange);
        color: var(--white);
        border: none;
        padding: 18px;
        font-size: 20px;
        font-weight: 700;
        border-radius: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-bottom: 15px;
        border: 2px solid var(--primary-orange);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .sp-buy-button:hover {
        background: var(--primary-orange-dark);
        border-color: var(--primary-orange-dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(var(--primary-orange-rgb), 0.3);
    }

    .sp-agency-card {
        background: linear-gradient(145deg, var(--bg-light), var(--white));
        border-left: 4px solid var(--primary-orange);
        padding: 20px;
        border-radius: 16px;
        margin: 25px 0;
    }

    .sp-agency-card h5 {
        color: var(--text-dark);
        font-weight: 700;
        margin-bottom: 10px;
    }

    .sp-agency-card a {
        color: var(--primary-orange);
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .sp-agency-card a:hover {
        text-decoration: underline;
    }

    .sp-feature-list {
        list-style: none;
        padding: 0;
        margin: 25px 0;
    }

    .sp-feature-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 14px;
        color: var(--text-dark);
        font-size: 15px;
    }

    .sp-feature-list i {
        color: var(--primary-orange);
        font-size: 18px;
        width: 22px;
    }

    /* Screenshot Gallery Section */
    .sp-gallery-section {
        margin: 60px 0;
    }

    .sp-section-title {
        font-size: 42px;
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 20px;
        text-align: center;
        letter-spacing: -0.02em;
    }

    .sp-section-title span {
        color: var(--primary-orange);
        position: relative;
    }

    .sp-section-title span::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 8px;
        background: rgba(var(--primary-orange-rgb), 0.2);
        z-index: -1;
    }

    .sp-section-subtitle {
        text-align: center;
        color: var(--text-light);
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto 40px;
    }

    .sp-gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 30px;
    }

    .sp-gallery-item {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--border-color);
        transition: all 0.3s ease;
        background: var(--white);
    }

    .sp-gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-orange);
    }

    .sp-gallery-image {
        width: 100%;
        height: auto;
        display: block;
        border-bottom: 1px solid var(--border-color);
    }

    .sp-gallery-caption {
        padding: 20px;
        background: var(--white);
    }

    .sp-gallery-caption h4 {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 8px;
    }

    .sp-gallery-caption p {
        color: var(--text-light);
        margin: 0;
        font-size: 14px;
    }

    .sp-gallery-featured {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 30px;
        background: linear-gradient(145deg, var(--bg-light), var(--white));
        border-radius: 24px;
        padding: 30px;
        border: 1px solid var(--border-color);
    }

    .sp-gallery-featured-image {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: var(--shadow-md);
    }

    .sp-gallery-featured-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .sp-gallery-featured-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .sp-gallery-featured-content h3 {
        font-size: 28px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 20px;
    }

    .sp-gallery-featured-content ul {
        list-style: none;
        padding: 0;
    }

    .sp-gallery-featured-content li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
        color: var(--text-dark);
    }

    .sp-gallery-featured-content li i {
        color: var(--primary-orange);
        font-size: 20px;
    }

    /* Feature Cards */
    .sp-feature-card {
        background: var(--white);
        border: 1px solid var(--border-color);
        border-radius: 24px;
        padding: 32px;
        height: 100%;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-sm);
    }

    .sp-feature-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-orange);
        border-color: var(--primary-orange);
    }

    .sp-feature-icon {
        width: 70px;
        height: 70px;
        background: var(--primary-orange-light);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        font-size: 32px;
        color: var(--primary-orange);
        transition: transform .4s ease;
    }

    .sp-feature-card:hover .sp-feature-icon {
        transform: rotate(8deg) scale(1.1);
    }

    .sp-feature-card h3 {
        font-size: 22px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 15px;
    }

    .sp-feature-card p {
        color: var(--text-light);
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .sp-feature-tag {
        display: inline-block;
        background: var(--primary-orange-light);
        color: var(--primary-orange);
        padding: 4px 12px;
        border-radius: 100px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
   .bottom-guarantee span{
       color:white;
	   padding-left: 10px;
    }

    /* Highlight Box */
    .sp-highlight-box {
        background: linear-gradient(135deg, var(--primary-orange-light) 0%, var(--white) 100%);
        border: 2px solid var(--primary-orange);
        border-radius: 32px;
        padding: 50px;
        margin: 70px 0;
        position: relative;
        overflow: hidden;
    }

    .sp-highlight-box::before {
        content: '✨';
        position: absolute;
        top: -20px;
        right: -20px;
        font-size: 120px;
        opacity: 0.1;
        transform: rotate(15deg);
    }

    .sp-step {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 15px;
        background: var(--white);
        border-radius: 16px;
        border: 1px solid var(--border-color);
        transition: all 0.3s;
    }

    .sp-step:hover {
        border-color: var(--primary-orange);
        transform: translateX(5px);
    }

    .sp-step-number {
        width: 45px;
        height: 45px;
        background: var(--primary-orange);
        color: var(--white);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 22px;
        flex-shrink: 0;
    }

    /* Use Cases */
    .sp-use-case-card {
        background: var(--white);
        border-radius: 20px;
        padding: 30px;
        border: 1px solid var(--border-color);
        height: 100%;
        transition: all 0.3s;
    }

    .sp-use-case-card:hover {
        border-color: var(--primary-orange);
        box-shadow: var(--shadow-orange);
    }

    .sp-use-case-icon {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .sp-use-case-card h4 {
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 15px;
    }

    /* FAQ */
    .sp-faq-item {
        background: var(--bg-light);
        border-radius: 20px;
        padding: 30px;
        height: 100%;
        border: 1px solid var(--border-color);
        transition: all 0.3s;
    }

    .sp-faq-item:hover {
        background: var(--white);
        border-color: var(--primary-orange);
        box-shadow: var(--shadow-sm);
    }

    .sp-faq-item h4 {
        font-size: 18px;
        font-weight: 700;
        color: var(--primary-orange);
        margin-bottom: 15px;
    }

    .sp-faq-item p {
        color: var(--text-light);
        line-height: 1.7;
        margin: 0;
    }

    /* CTA Section */
    .sp-cta {
        background: linear-gradient(145deg, var(--text-dark), #2d2d2d);
        border-radius: 40px;
        padding: 80px 40px;
        text-align: center;
        margin: 80px 0 40px;
        position: relative;
        overflow: hidden;
    }

    .sp-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 50%, rgba(var(--primary-orange-rgb), 0.15), transparent 50%);
        pointer-events: none;
    }

    .sp-cta h2 {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 20px;
        color: var(--white);
        position: relative;
    }

    .sp-cta h2 span {
        color: var(--primary-orange);
    }

    .sp-cta p {
        font-size: 18px;
        margin-bottom: 35px;
        opacity: 0.9;
        color: var(--white);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
    }

    .sp-cta-button {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--primary-orange);
        color: var(--white);
        text-decoration: none;
        padding: 20px 50px;
        font-size: 22px;
        font-weight: 700;
        border-radius: 60px;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        position: relative;
        border: 2px solid transparent;
    }

    .sp-cta-button:hover {
        background: var(--white);
        color: var(--primary-orange);
        transform: translateY(-3px);
        box-shadow: 0 20px 30px rgba(0,0,0,0.3);
        border-color: var(--primary-orange);
    }

    /* IMAGE SIZE FIX */
    .sp-gallery-image {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

    /* LIGHTBOX */
    .sp-lightbox {
        display: none;
        position: fixed;
        z-index: 9999;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.9);
        align-items: center;
        justify-content: center;
    }

    .sp-lightbox img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 10px;
    }

    .sp-lightbox-close {
        position: absolute;
        top: 30px;
        right: 40px;
        font-size: 40px;
        color: white;
        cursor: pointer;
    }
    /* Live Demo Button */
    .sp-demo-button-wrapper {
        background: var(--bg-light);
        border-left: 4px solid var(--primary-orange);
        border-radius: 12px;
        padding: 12px 16px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sp-demo-text {
        display: flex;
        flex-direction: column;
    }

    .sp-demo-text strong {
        font-size: 15px;
        color: var(--text-dark);
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .sp-demo-text strong i {
        color: var(--primary-orange);
        font-size: 16px;
    }

    .sp-demo-text small {
        font-size: 12px;
        color: var(--text-light);
    }

    .sp-demo-link {
        background: var(--primary-orange);
        color: white;
        font-size: 13px;
        font-weight: 600;
        padding: 6px 16px;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.2s;
        border: 1px solid var(--primary-orange);
        white-space: nowrap;
    }

    .sp-demo-link:hover {
        background: white;
        color: var(--primary-orange);
        border-color: var(--primary-orange);
    }
   .a:visited{color:white !Important;}
footer .container{max-width:1400px !important;}

    /* MOBILE STICKY BUY */
    @media (max-width: 768px) {
        .sp-buy-button {
            position: fixed;
            bottom: 0px;
            left: 0px;
            right: 0px;
            z-index: 999;
           font-size:16px;
			border-radius:0px;
        }
    }

    /* Responsive */
    @media (max-width: 992px) {
        .sp-hero h1 {
            font-size: 42px;
        }
        
        .sp-gallery-featured {
            grid-template-columns: 1fr;
        }
        
        .sp-gallery-grid {
            grid-template-columns: 1fr;
        }
        
        .sp-gallery-item {
            grid-column: span 1 !important;
        }
        
        .sp-purchase-card {
            position: static;
            margin-top: 40px;
        }
    }

    @media (max-width: 768px) {
        .sp-wrapper {
            padding: 20px 16px;
        }
        
        .sp-hero {
            padding: 30px 20px;
        }
        
        .sp-hero h1 {
            font-size: 32px;
        }
        
        .sp-section-title {
            font-size: 32px;
        }
        
        .sp-stats {
            flex-direction: column;
            gap: 20px;
        }
        
        .sp-highlight-box {
            padding: 30px 20px;
        }
        
        .sp-cta {
            padding: 50px 20px;
        }
        
        .sp-cta h2 {
            font-size: 32px;
        }
		.sp-gallery-image{
		height:auto;
		}
		.sp-cta-button{
		 padding: 20px 40px;
         font-size: 14px;
		}
    }

/* Main container */
.woocommerce-account .woocommerce {
    max-width: 1100px;
    margin: 60px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Login & Register boxes */
.woocommerce form.login,
.woocommerce form.register {
    border: none;
    padding: 30px;
    border-radius: 12px;
    background: #fafafa;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

/* Headings */
.woocommerce h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #222;
    font-weight: 600;
}

/* Input fields */
.woocommerce form .form-row input.input-text {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    font-size: 15px;
}

/* Input focus */
.woocommerce form .form-row input.input-text:focus {
    border-color: rgb(255, 108, 8);
    box-shadow: 0 0 0 2px rgba(255, 108, 8, 0.15);
    outline: none;
}

/* Labels */
.woocommerce form .form-row label {
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

/* Buttons */
.woocommerce button.button,
.woocommerce input.button ,
.woocommerce-button{
    background: rgb(255 108 8 / 0%) !important;
    color: #FF6C08 !important;
    border: 1px solid #FF6C08 !important;
    padding: 14px 19px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    margin-bottom: 10px;
}

/* Button hover */
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce-button:hover {
    background: #FF6C08 !important;
    color: white ! IMPORTANT;
    transform: translateY(-1px);
}

/* Remember me & lost password */
.woocommerce .woocommerce-form__label-for-checkbox {
    font-size: 14px;
}

.woocommerce .lost_password a {
    color: rgb(255, 108, 8);
    font-weight: 500;
}

.woocommerce .lost_password a:hover {
    text-decoration: underline;
}
.woocommerce-account .woocommerce {
    display: flex !important;
flex-wrap: nowrap !important;
}

/* Two column layout */
@media (min-width: 768px) {
    .woocommerce-account .woocommerce {
        display: flex;
        gap: 30px;
    }

    .woocommerce-account .u-column1,
    .woocommerce-account .u-column2 {
        width: 50%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .woocommerce-account .woocommerce {
        padding: 20px;
		flex-wrap: wrap !important;
    }

}
/* Make WooCommerce container wrap properly */
.woocommerce-account .woocommerce {
    display: flex;
    flex-wrap: wrap; /* IMPORTANT */
}

/* Force notice to full width (top row) */
.woocommerce-notices-wrapper {
    width: 100%;
    flex-basis: 100%;
    margin-bottom: 20px;
}

/* Keep login/register in next row */
#customer_login {
    width: 100%;
}

.wSelect-theme-classic.wSelect{width: 100% !important;
    padding: 8px !important;
    margin-bottom: 20px !important;}
.woocommerce-account.logged-in .entry-content>.woocommerce .button{color:#FF6C08 !important;}
.woocommerce-account.logged-in .entry-content>.woocommerce .button:hover{color:white !important;}
.sp-demo-link{color:white !important;}
.botiga-dropdown-link:visited{color:#FF6C08 !important;}