﻿/* ===========================================
   CUSTOM.CSS - All inline styles extracted from blade files
   =========================================== */

/* ===== HEADER CENTER LOGO + SPLIT MENU (layout.blade.php) ===== */

.main_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 10px 0;
}

.header_logo {
    flex: 0 0 auto;
    text-align: center;
    margin-bottom: 0;
}

.header_logo img {
    max-height: 70px;
}

.main_menu {
    flex: 1;
}

.main_menu:first-of-type nav ul {
    justify-content: flex-end;
    padding-right: 40px;
}

.main_menu:last-of-type nav ul {
    justify-content: flex-start;
    padding-left: 40px;
}

.main_menu nav ul li {
    margin: 0 18px;
}

@media (max-width: 991px) {
    .main_menu {
        display: none !important;
    }
    .header_logo {
        margin: 0 auto;
    }
    .header_account {
        position: absolute;
        right: 0;
    }
}

/* HEADER TOP BAR RESPONSIVE */
@media (max-width: 767px) {
    .header_top {
        padding: 8px 0;
    }
    .header_top_inner {
        justify-content: center !important;
    }
    .header_top_sidebar ul {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 8px;
    }
    .header_top_sidebar ul li {
        margin-right: 0;
        padding-right: 0;
        border-right: none !important;
        white-space: nowrap;
    }
    .header_top_sidebar ul li::before {
        display: none;
    }
    .header_top_sidebar ul li a {
        font-size: 11px;
        line-height: 18px;
    }
    .header_top_sidebar ul li i {
        font-size: 12px;
        margin-right: 3px;
    }
}

@media (max-width: 400px) {
    .header_top_sidebar ul li a {
        font-size: 11px;
        word-break: break-all;
    }
}

/* ===== FOOTER (layout.blade.php) ===== */
.footer_widgets {
    position: relative;
    background-color: #990000;
    background-image: url('../img/bg/footer-backgorund.jpeg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    padding-top: 180px;
}

.footer_widgets::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.footer_widgets .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .footer_widgets {
        background-image: none !important;
        padding-top: 100px;
    }
    .main_footer_inner {
        flex-direction: column !important;
        text-align: center;
    }
    .footer_list_width {
        width: 100% !important;
        margin-right: 0 !important;
        padding-right: 0 !important;
        border-right: 0 !important;
        margin-bottom: 30px;
    }
    .footer_widget_list {
        width: 100% !important;
        /* margin-bottom: 30px; */
    }
    .footer_contact_info_list {
        justify-content: center;
    }
    .footer_menu ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px 20px;
    }
}

@media (max-width: 575px) {
    .footer_widgets {
        padding-top: 80px;
    }
    .main_footer {
        padding: 30px 0;
    }
    .footer_menu ul {
        flex-direction: column;
        gap: 8px;
    }
}

/* ===== HERO SLIDER (index.blade.php) ===== */
.hero-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

.hero-wrapper .slick-slide {
    outline: none;
    overflow: hidden;
}

.hero-wrapper .slick-slide img {
    width: 100%;
    display: block;
}

@media (min-width: 992px) {
    .hero-wrapper .slick-list,
    .hero-wrapper .slick-track {
        height: 100vh;
    }
    .hero-wrapper .slick-slide img {
        /* height: 100vh; */
        object-fit: contain;
        background: #111;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-wrapper .slick-list,
    .hero-wrapper .slick-track {
        height: 50vh;
    }
    .hero-wrapper .slick-slide img {
        height: 50vh;
        object-fit: contain;
        background: #111;
    }
}

@media (max-width: 767px) {
    .hero-wrapper .slick-list,
    .hero-wrapper .slick-track {
        height: auto;
    }
    .hero-wrapper .slick-slide img {
        height: auto;
        max-height: 50vh;
        object-fit: contain;
    }
}

/* ===== SINGLE PRODUCT CARD (index.blade.php) ===== */
.single_product {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.single_product figure {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product_thumb {
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
    padding: 10px;
}

.product_thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product_content {
    padding: 12px;
    text-align: center;
}

/* ===== INSTAGRAM FOLLOW SECTION (index.blade.php) ===== */
.instagram_follow_section .insta_box {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 20px;
    padding: 50px 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.instagram_follow_section .insta_icon {
    font-size: 60px;
    margin-right: 20px;
}

.instagram_follow_section .insta_text h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.instagram_follow_section .insta_text h4 {
    font-size: 24px;
    font-style: italic;
    color: #fff;
    opacity: 0.9;
}

.instagram_follow_section .insta_btn {
    background: transparent;
    border: 2px solid #fff;
    padding: 12px 35px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
}

.instagram_follow_section .insta_btn:hover {
    background: #fff;
    color: #dc2743;
}

@media (max-width: 768px) {
    .instagram_follow_section .insta_box {
        padding: 30px;
        text-align: center;
    }
    .instagram_follow_section .insta_left {
        flex-direction: column;
        margin-bottom: 20px;
    }
    .instagram_follow_section .insta_icon {
        margin: 0 0 15px 0;
        font-size: 50px;
    }
    .instagram_follow_section .insta_text h3 {
        font-size: 28px;
    }
    .instagram_follow_section .insta_text h4 {
        font-size: 18px;
    }
}

/* ===== PRODUCTS SECTION BACKGROUND (index.blade.php) ===== */
.product_section {
    position: relative;
    background-image: url('../img/bg/products-bg.jpeg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.product_section .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .product_section {
        padding: 60px 0;
    }
}

/* ===== BANNER FULLWIDTH SECTION (index.blade.php) ===== */
.banner_fullwidth_section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner_fullwidth_img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.banner_fullwidth_section .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
}

@media (max-width: 768px) {
    .banner_fullwidth_img {
        height: auto;
        max-height: 300px;
        object-fit: contain;
    }
}

/* ===== DEALER SECTION (index.blade.php) ===== */
.dealer_section {
    position: relative;
    background: #990000;
    padding: 120px 0 80px;
    overflow: visible;
    margin-bottom: 40px;
}

.dealer_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: white;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 98% 100%, 96% 70%, 94% 100%, 92% 70%, 90% 100%, 88% 70%, 86% 100%, 84% 70%, 82% 100%, 80% 70%, 78% 100%, 76% 70%, 74% 100%, 72% 70%, 70% 100%, 68% 70%, 66% 100%, 64% 70%, 62% 100%, 60% 70%, 58% 100%, 56% 70%, 54% 100%, 52% 70%, 50% 100%, 48% 70%, 46% 100%, 44% 70%, 42% 100%, 40% 70%, 38% 100%, 36% 70%, 34% 100%, 32% 70%, 30% 100%, 28% 70%, 26% 100%, 24% 70%, 22% 100%, 20% 70%, 18% 100%, 16% 70%, 14% 100%, 12% 70%, 10% 100%, 8% 70%, 6% 100%, 4% 70%, 2% 100%, 0 70%);
}

.dealer_pack_icon {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.dealer_pack_icon img {
    width: 150px;
}

.dealer_hand {
    position: absolute;
    bottom: 0;
    width: 450px;
    z-index: 1;
    pointer-events: none;
}

.dealer_left {
    left: 0;
}

.dealer_right {
    right: 0;
}

.basil_leaf {
    position: absolute;
    left: 8%;
    top: 20%;
    width: 50px;
    z-index: 2;
}

.dealer_title {
    font-size: 64px;
    font-weight: 900;
    color: #F6C752;
    line-height: 1;
    margin-bottom: 0;
    text-transform: none;
}

.dealer_subtitle {
    font-size: 48px;
    font-family: 'Brush Script MT', cursive;
    color: #F6C752;
    margin-top: -10px;
    margin-bottom: 20px;
}

.dealer_desc {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 17px;
    color: white;
    font-weight: 500;
}

.dealer_form .form-control {
    height: 55px;
    border-radius: 6px;
    border: none;
    padding: 10px 20px;
    margin-bottom: 15px;
    font-size: 16px;
}

.dealer_form textarea.form-control {
    height: 120px;
}

.dealer_btn {
    background: #2b0c5e;
    color: #fff;
    padding: 15px 50px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 18px;
    transition: 0.3s ease;
    margin-top: 10px;
}

.dealer_btn:hover {
    background: #1a083d;
}

@media (max-width: 992px) {
    .dealer_hand {
        width: 300px;
    }
    .dealer_title {
        font-size: 48px;
    }
    .dealer_subtitle {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .dealer_hand,
    .basil_leaf,
    .dealer_section::before,
    .dealer_pack_icon {
        display: none;
    }
    .dealer_section {
        padding: 60px 15px;
    }
    .dealer_title {
        font-size: 32px;
    }
    .dealer_subtitle {
        font-size: 24px;
    }
    .dealer_desc {
        font-size: 15px;
        padding: 0 10px;
    }
    .dealer_form .form-control {
        height: 45px;
        font-size: 14px;
    }
    .dealer_form textarea.form-control {
        height: 100px;
    }
    .dealer_btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* ===== BRAND LOGO FIX (index.blade.php) ===== */
.brand_section_area {
    padding: 40px 0;
}

.single_brand {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.single_brand img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    transition: 0.3s ease;
}

.single_brand img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .single_brand {
        height: 80px;
    }
    .single_brand img {
        max-height: 55px;
    }
}

/* ===== BRAND STORY RESPONSIVE (index.blade.php) ===== */
.brand_story_image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .brand_story_image img {
        width: 250px !important;
    }
    .brand_story_content {
        text-align: center;
        margin-top: 30px;
    }
    .mb-110 {
        margin-bottom: 50px;
    }
    .mb-105 {
        margin-bottom: 40px;
    }
    .mb-100 {
        margin-bottom: 40px;
    }
    .mb-80 {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .mb-110 {
        margin-bottom: 35px;
    }
    .mb-105 {
        margin-bottom: 30px;
    }
    .mb-100 {
        margin-bottom: 30px;
    }
    .mb-80 {
        margin-bottom: 25px;
    }
}

/* ===== PRODUCT GALLERY FIX (product-detail.blade.php) ===== */
.product_gallery_inner {
    gap: 20px;
}

.product_gallery_main_img {
    width: 85%;
}

.product_gallery_main_img .gallery_img_list {
    display: none;
}

.product_gallery_main_img .gallery_img_list.active {
    display: block;
}

.product_gallery_main_img img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
}

/* ===== THUMBNAILS (product-detail.blade.php) ===== */
.product_gallery_btn_img {
    width: 15%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product_gallery_btn_img img {
    width: 100%;
    height: 80px;
    object-fit: contain;
    cursor: pointer;
    border-radius: 8px;
    padding: 5px;
    background: #fff;
    border: 2px solid transparent;
    transition: 0.3s;
}

.product_gallery_btn_img img:hover,
.product_gallery_btn_img img.active-thumb {
    border: 2px solid #dd2a7b;
}

@media(max-width:768px) {
    .product_gallery_inner {
        flex-direction: column;
    }
    .product_gallery_main_img,
    .product_gallery_btn_img {
        width: 100%;
    }
    .product_gallery_btn_img {
        flex-direction: row;
        justify-content: center;
    }
    .product_gallery_btn_img img {
        width: 70px;
        height: 70px;
    }
}

/* ===== ABOUT PAGE (about.blade.php) ===== */
.about_image img {
    width: 100%;
    border-radius: 10px;
}

.about_content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about_content p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 15px;
}

@media(max-width:768px) {
    .about_content {
        margin-top: 30px;
    }
}
