/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.second-section {


    .container {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 135px;
    }

    /* Navigation Bar */
    .navigation-bar {
        background-color: #2C1810;
        color: #fff;
        padding: 16px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .nav-container {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 150px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .nav-container a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        white-space: nowrap;
        transition: opacity 0.3s;
    }

    .nav-container a:hover {
        opacity: 0.8;
    }

    /* Logo Line Section */
    .logo-line {
        background-color: #f5f5f5;
        padding: 40px 0;
        margin-bottom: 40px;
    }

    .logos-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    .brand-logo {
        height: 50px;
        object-fit: contain;
        opacity: 0.7;
        transition: opacity 0.3s;
    }

    .brand-logo:hover {
        opacity: 1;
    }

    /* Hero Section */
    .hero-section {
        /*! background: linear-gradient(135deg, #6B4C4C 0%, #4A2C2C 100%); */
        padding: 80px 0;
        margin-bottom: 60px;
        position: relative;
        background: linear-gradient(97.38deg, #411A31 25.47%, rgba(0, 0, 0, 0) 88.85%);
    }

    .hero-container {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 100px;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .hero-content h2 {
        font-size: 36px;
        color: #fff;
        margin-bottom: 30px;
        font-weight: 600;
    }

    .hero-content p {
        color: #f0f0f0;
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 40px;
    }

    .hero-buttons {
        display: flex;
        gap: 20px;
    }

    .btn {
        padding: 14px 40px;
        @media (max-width:768px) {
            padding: 14px;
        }
        font-size: 16px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s;
        font-weight: 500;
    }

    .btn-primary {
        background-color: #fff;
        color: #4A2C2C;
    }

    .btn-primary:hover {
        background-color: #f0f0f0;
    }

    .btn-secondary {
        background-color: transparent;
        color: #fff;
        border: 2px solid #fff;
    }

    .btn-secondary:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    .hero-image{
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: -1;
    }
    .hero-ceo{
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: -1
    }
    .hero-image img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        z-index: -2;
        position: relative;
    }

    /* Section Titles */
    .section-title {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 16px;
        color: #2C1810;
    }

    .section-description {
        font-size: 14px;
        color: #666;
        margin-bottom: 40px;
    }

    /* Legality Section */
    .legality-section {
        padding: 60px 0;
        background-color: #fff;
    }

    .legality-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .stat-box {
        background-color: #f5f5f5;
        border-radius: 8px;
        padding: 30px;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .stat-box.legal {
        background-color: #e8f5e9;
    }

    .stat-box.illegal {
        background-color: #ffebee;
    }

    .stat-box.restricted {
        background-color: #fff8e1;
    }

    .stat-number {
        font-size: 32px;
        font-weight: 700;
    }

    .stat-label {
        font-size: 14px;
        color: #666;
    }

    /* Search and Filter */
    .search-filter-container {
        display: flex;
        gap: 20px;
        margin-bottom: 40px;
        align-items: center;
    }

    .search-box {
        flex: 1;
        position: relative;
    }

    .search-box input {
        width: 100%;
        padding: 18px 50px 18px 24px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-size: 16px;
        outline: none;
        transition: border-color 0.3s;
    }

    .search-box input:focus {
        border-color: #6B4C4C;
    }

    .search-icon {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
    }

    .filter-tabs {
        display: flex;
        gap: 10px;
        background-color: #f5f5f5;
        padding: 6px;
        border-radius: 8px;
    }

    .filter-btn {
        padding: 10px 24px;
        background-color: transparent;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.3s;
    }

    .filter-btn.active,
    .filter-btn:hover {
        background-color: #fff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .view-toggle {
        display: flex;
        gap: 10px;
    }

    .view-btn {
        padding: 10px 16px;
        background-color: #f5f5f5;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s;
    }

    .view-btn.active {
        background-color: #6B4C4C;
        color: #fff;
    }

    /* States Grid */
    .states-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .state-card {
        background-color: #fff;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        padding: 24px;
        position: relative;
        transition: all 0.3s;
    }

    .state-card:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

    .state-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
        color: #2C1810;
    }

    .status-badge {
        display: inline-block;
        padding: 6px 12px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 500;
    }

    .status-badge.legal {
        background-color: #e8f5e9;
        color: #2e7d32;
    }

    .status-badge.illegal {
        background-color: #ffebee;
        color: #c62828;
    }

    .status-badge.restricted {
        background-color: #fff8e1;
        color: #f57c00;
    }

    .info-icon {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 18px;
        height: 18px;
        background-color: #e0e0e0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        cursor: pointer;
    }

    /* Where to Buy Section */
    .where-to-buy-section {
        padding: 60px 0;
        background-color: #f9f9f9;
    }

    .expandable-card {
        background-color: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        margin-bottom: 20px;
        overflow: hidden;
    }

    .card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 24px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .card-header:hover {
        background-color: #f5f5f5;
    }

    .card-header h3 {
        font-size: 18px;
        color: #2C1810;
    }

    .expand-btn {
        width: 32px;
        height: 32px;
        border: none;
        background-color: #f5f5f5;
        border-radius: 4px;
        font-size: 24px;
        cursor: pointer;
        transition: all 0.3s;
    }

    .expand-btn:hover {
        background-color: #e0e0e0;
    }

    .card-content {
        padding: 0 24px 24px;
        display: none;
    }

    .expandable-card.active .card-content {
        display: block;
    }

    .expandable-card.active .expand-btn {
        transform: rotate(45deg);
    }

    .info-section {
        margin-bottom: 30px;
    }

    .info-section h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 16px;
        color: #2C1810;
    }

    .info-section ul {
        list-style: none;
        padding-left: 0;
    }

    .info-section li {
        padding: 8px 0;
        padding-left: 28px;
        position: relative;
        color: #555;
    }

    .info-section li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #4CAF50;
        font-weight: bold;
    }

    /* Warning Box */
    .warning-box {
        background-color: #fff3e0;
        border-left: 4px solid #ff9800;
        padding: 30px;
        border-radius: 8px;
        margin: 40px 0;
    }

    .warning-box h3 {
        font-size: 20px;
        color: #e65100;
        margin-bottom: 16px;
    }

    .warning-box p {
        color: #555;
        line-height: 1.8;
    }

    /* Bulk Discount Banner */
    .bulk-discount-banner {
        background-color: #e8f5e9;
        border: 2px solid #4CAF50;
        border-radius: 8px;
        padding: 24px;
        display: flex;
        gap: 16px;
        align-items: flex-start;
        margin: 40px 0;
    }

    .check-icon {
        flex-shrink: 0;
        color: #4CAF50;
    }

    .bulk-discount-banner h4 {
        font-size: 18px;
        margin-bottom: 8px;
        color: #2C1810;
    }

    .bulk-discount-banner p {
        color: #555;
        font-size: 14px;
    }

    /* Premium Flowers Section */
    .premium-flowers-section {
        padding: 60px 0;
        background-color: #fff;
    }

    .product-search {
        margin-bottom: 40px;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }

    .product-card {
        background-color: #fff;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s;
    }

    .product-card:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        transform: translateY(-4px);
    }

    .product-header {
        padding: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #e0e0e0;
    }

    .product-header h3 {
        font-size: 20px;
        color: #2C1810;
    }

    .thc-badge {
        background-color: #6B4C4C;
        color: #fff;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
    }

    .product-body {
        padding: 24px;
    }

    .effects-label {
        font-size: 13px;
        font-weight: 600;
        color: #666;
        margin-bottom: 8px;
    }

    .effects {
        font-size: 15px;
        color: #2C1810;
        margin-bottom: 12px;
        font-weight: 500;
    }

    .description {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .pricing {
        background-color: #f9f9f9;
        padding: 16px;
        border-radius: 8px;
    }

    .pricing-label {
        font-size: 13px;
        font-weight: 600;
        color: #666;
        margin-bottom: 12px;
    }

    .price-row {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        font-size: 14px;
        color: #333;
    }

    .price-row span:first-child {
        color: #666;
    }

    .price-row span:last-child {
        font-weight: 600;
        color: #2C1810;
    }

    .product-footer {
        padding: 16px 24px;
        background-color: #f9f9f9;
        border-top: 1px solid #e0e0e0;
    }

    .stock-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: #2e7d32;
        font-weight: 500;
    }

    .stock-badge svg {
        width: 18px;
        height: 18px;
    }

    .stock-badge.in-stock circle {
        fill: #4CAF50;
    }

    /* Info Box */
    .info-box {
        background-color: #f5f5f5;
        border-radius: 12px;
        padding: 40px;
        margin-top: 40px;
    }

    .info-box h3 {
        font-size: 20px;
        margin-bottom: 20px;
        color: #2C1810;
    }

    .info-box ul {
        list-style: none;
        padding-left: 0;
    }

    .info-box li {
        padding: 12px 0;
        padding-left: 32px;
        position: relative;
        color: #555;
        font-size: 15px;
    }

    .info-box li::before {
        content: "•";
        position: absolute;
        left: 12px;
        color: #6B4C4C;
        font-weight: bold;
        font-size: 18px;
    }

    /* Delivery Section */
    .delivery-section {
        padding: 60px 0;
        background-color: #f9f9f9;
    }

    .section-subtitle {
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        color: #000;
        text-align: center;
        margin-bottom: 40px;
        line-height: 24px;
    }

    .delivery-section .section-title {
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        font-size: 40px;
        color: #411A31;
        text-align: center;
        margin-bottom: 8px;
    }

    .delivery-slider-container {
        overflow: hidden;
        margin-bottom: 30px;
    }

    .delivery-slider {
        display: flex;
        gap: 21px;
        transition: transform 0.3s ease;
    }

    .delivery-card {
        background-color: #fff;
        border: 1px solid #411A31;
        border-radius: 10px;
        padding: 30px 20px;
        min-width: 376px;
        flex-shrink: 0;
        transition: all 0.3s;
    }

    .delivery-card:hover {
        box-shadow: 0 8px 24px rgba(65, 26, 49, 0.15);
    }

    .card-icon {
        width: 60px;
        height: 60px;
        background-color: rgba(65, 26, 49, 0.1);
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .delivery-card h3 {
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        font-size: 20px;
        margin-bottom: 24px;
        color: #411A31;
        line-height: 1;
    }

    .delivery-card ul {
        list-style: none;
        padding-left: 0;
    }

    .delivery-card li {
        padding: 8px 0;
        padding-left: 26px;
        position: relative;
        color: #000;
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        line-height: 1.4;
    }

    .delivery-card li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 12px;
        width: 16px;
        height: 16px;
        background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.66667 10.1147L12.7947 3.98599L13.738 4.92866L6.66667 12L2.42401 7.75733L3.36667 6.81466L6.66667 10.1147Z' fill='%23411A31'/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
    }

    /* Slider Navigation */
    .delivery-slider-nav {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .slider-buttons {
        display: flex;
        gap: 8px;
    }

    .slider-btn {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: 1px solid #411A31;
        background-color: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
        color: #411A31;
    }

    .slider-btn:hover {
        background-color: #411A31;
        color: #fff;
    }

    .slider-btn.slider-next {
        background-color: #411A31;
        color: #fff;
    }

    .slider-btn.slider-next:hover {
        background-color: #5a2845;
    }

    .slider-progress {
        flex: 1;
        height: 4px;
        background-color: rgba(65, 26, 49, 0.2);
        border-radius: 2px;
        overflow: hidden;
        max-width: 200px;
    }

    .slider-progress-bar {
        height: 100%;
        background-color: #411A31;
        border-radius: 2px;
        width: 33%;
        transition: width 0.3s ease;
    }

    .delivery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }

    /* FAQ Section */
    .faq-section {
        padding: 60px 0;
        background-color: #fff;
    }

    .faq-tabs {
        display: flex;
        gap: 4px;
        margin-bottom: 40px;
        border-bottom: 2px solid #e0e0e0;
    }

    .tab-btn {
        padding: 14px 28px;
        background-color: transparent;
        border: none;
        border-bottom: 3px solid transparent;
        cursor: pointer;
        font-size: 15px;
        color: #666;
        transition: all 0.3s;
        position: relative;
        top: 2px;
    }

    .tab-btn.active {
        color: #2C1810;
        border-bottom-color: #6B4C4C;
        font-weight: 600;
    }

    .tab-btn:hover {
        color: #2C1810;
    }

    /* FAQ Tab Content */
    .faq-tab-content {
        display: none;
    }

    .faq-tab-content.active {
        display: block;
    }

    /* Accordion */
    .accordion {
        /* max-width: 1000px; */
    }

    .accordion-item {
        background-color: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        margin-bottom: 16px;
        overflow: hidden;
    }

    .accordion-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 24px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .accordion-header:hover {
        background-color: #f9f9f9;
    }

    .accordion-header h3 {
        font-size: 16px;
        color: #2C1810;
        font-weight: 500;
    }

    .accordion-icon {
        width: 32px;
        height: 32px;
        background-color: #f5f5f5;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        transition: all 0.3s;
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .accordion-item.active .accordion-content {
        max-height: 500px;
        padding: 0 24px 24px;
    }

    .accordion-item.active .accordion-icon {
        transform: rotate(45deg);
        background-color: #6B4C4C;
        color: #fff;
    }

    .accordion-content p {
        color: #555;
        line-height: 1.8;
        font-size: 15px;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .container {
            padding: 0 60px;
        }

        .nav-container {
            padding: 0 60px;
        }

        .hero-container {
            padding: 0 60px;
        }

        .product-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .delivery-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .states-grid {
            grid-template-columns: repeat(3, 1fr);
        }

        .delivery-card {
            min-width: 320px;
        }

        .delivery-section .section-title {
            font-size: 32px;
        }
    }

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

        .nav-container {
            padding: 0 30px;
            flex-direction: column;
            align-items: flex-start;
        }

        .hero-container {
            grid-template-columns: 1fr;
            padding: 0 30px;
        }

        .legality-stats {
            grid-template-columns: repeat(2, 1fr);
        }

        .search-filter-container {
            flex-direction: column;
            align-items: stretch;
        }

        .product-grid {
            grid-template-columns: 1fr;
        }

        .delivery-grid {
            grid-template-columns: 1fr;
        }

        .states-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .faq-tabs {
            overflow-x: auto;
        }

        .section-title {
            font-size: 24px;
        }

        .delivery-card {
            min-width: 280px;
        }

        .delivery-section .section-title {
            font-size: 28px;
        }

        .slider-btn {
            width: 40px;
            height: 40px;
        }
    }

    @media (max-width: 480px) {
        .legality-stats {
            grid-template-columns: 1fr;
        }

        .states-grid {
            grid-template-columns: 1fr;
        }
    }

}