/* ============================================
   Rapidotex TRANSFERS - BRAND COLOR PALETTE
   ============================================ */
:root {
    /* Primary Colors */
    --primary-yellow-orange: #FFA726;  /* Lightning Yellow-Orange */
    --accent-orange: #FF6D00;          /* Accent Orange */
    --highlight-yellow: #FFD740;       /* Highlight Yellow */
    
    /* Base Colors */
    --pure-white: #FFFFFF;             /* Pure White */
    --jet-black: #000000;              /* Jet Black */
    --steel-grey: #1E1E1E;             /* Steel Grey */
    
    /* Gradient */
    --brand-gradient: linear-gradient(90deg, #FFA726, #FF6D00);
    --brand-gradient-hover: linear-gradient(90deg, #FF6D00, #FFA726);
    
    /* Text Colors */
    --text-dark: #1E1E1E;
    --text-light: #6b7280;
    --text-white: #FFFFFF;
    
    /* Background Colors */
    --bg-light: #f9fafb;
    --bg-white: #FFFFFF;
    --bg-dark: #1E1E1E;
    --bg-black: #000000;
    
    /* Border & Shadows */
    --border-color: #e5e7eb;
    --shadow-sm: 0 2px 8px rgba(255, 167, 38, 0.1);
    --shadow-md: 0 4px 15px rgba(255, 167, 38, 0.2);
    --shadow-lg: 0 8px 25px rgba(255, 167, 38, 0.3);
}

/* Reset et Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    color: var(--text-dark);
    background: var(--bg-white);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0a0c14 0%, #1a1d29 50%, #0a0c14 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section .container-fluid {
    padding: 0 50px;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    padding-right: 40px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight-text {
    color: var(--accent-orange);
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    font-size: 15px;
}

.feature-item i {
    color: var(--highlight-yellow);
    font-size: 18px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-hero {
    background: linear-gradient(135deg, var(--primary-yellow-orange) 0%, var(--accent-orange) 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(255, 167, 38, 0.4);
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 167, 38, 0.6);
    color: #FFFFFF;
}

.btn-secondary-hero {
    background: linear-gradient(135deg, var(--highlight-yellow) 0%, var(--accent-orange) 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(255, 215, 64, 0.4);
}

.btn-secondary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 64, 0.6);
    color: #FFFFFF;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-avatars {
    display: flex;
    margin-right: 5px;
}

.stat-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #0a0c14;
    margin-left: -12px;
}

.stat-avatars img:first-child {
    margin-left: 0;
}

.stat-icon {
    font-size: 40px;
    color: #FFFFFF;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
}

.stat-rating .stars {
    color: #FFD700;
    font-size: 1rem;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
}

.stat-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tshirt-img {
    width: 100%;
    max-width: 700px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Price Badge */
.price-badge {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--highlight-yellow) 0%, #27ae60 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.6);
    animation: pulse 2s ease-in-out infinite;
    transform: rotate(-15deg);
    z-index: 10;
}

.price-badge span {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
}

@keyframes pulse {
    0%, 100% {
        transform: rotate(-15deg) scale(1);
    }
    50% {
        transform: rotate(-15deg) scale(1.05);
    }
}

/* Responsive Hero Section */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-section .container-fluid {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    
    .price-badge {
        width: 90px;
        height: 90px;
        top: 20px;
        right: 20px;
    }
    
    .price-badge span {
        font-size: 13px;
    }
    
    .stat-rating {
        font-size: 1.5rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
}

/* Leader Section */
.leader-section {
    background: #FFFFFF;
    padding: 40px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem !important;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 50px;
}

.feature-box {
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #f3f4f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: #e5e7eb;
    transform: scale(1.05);
}

.feature-icon i {
    font-size: 32px;
    color: #1f2937;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Products Section */
.products-section {
    background: #f9fafb;
    padding: 80px 0;
}

.btn-shop-all {
    width: 200px !important;
    text-align: center;
    background: #FFFFFF;
    color: #1f2937;
    border: 2px solid #e5e7eb;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-shop-all:hover {
    background: #1f2937;
    color: #FFFFFF;
    border-color: #1f2937;
}

.product-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    height: 100%;
}

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

.product-image {
    width: 100%;
    aspect-ratio: 1;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px 15px;
    text-align: center;
    position: relative;
}

.product-name {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.product-label {
    font-size: 11px;
    color: #6b7280;
    margin-bottom: 5px;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1f2937;
    position: relative;
    display: inline-block;
}

.product-price::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 8px;
    background: #FFD700;
    z-index: -1;
    border-radius: 4px;
}

/* Responsive for Leader and Products */
@media (max-width: 992px) {
    .leader-section,
    .products-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .leader-section,
    .products-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .products-section .d-flex {
        flex-direction: column;
        gap: 20px;
    }
    
    .btn-shop-all {
        width: 100%;
        text-align: center;
    }
}

/* DTF Process Section */
.process-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.process-header {
    text-align: center;
    margin-bottom: 50px;
}

.process-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin-top: 10px;
}

.process-card {
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-image {
    position: relative;
    background: #f9fafb;
    border-radius: 12px;
    margin-bottom: 25px;
    overflow: hidden;
}
.process-image img{
    width: 100%;
    height: 380px;
}

.process-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--highlight-yellow) 0%, #27ae60 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
    z-index: 2;
}

.process-badge i {
    font-size: 20px;
    color: #FFFFFF;
}

.Rapidotex-illustration {
    width: 100%;
    height: auto;
    max-width: 250px;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
}

.process-content {
    padding: 0 15px;
}

.process-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.4;
}

.process-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Process Section */
@media (max-width: 992px) {
    .process-section {
        padding: 60px 0;
    }
    
    .process-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 40px 0;
    }
    
    .process-card {
        margin-bottom: 30px;
    }
    
    .process-image {
        padding: 20px;
    }
    
    .Rapidotex-illustration {
        max-width: 200px;
    }
}

/* DTF Products Selection Section */
.dtf-selection-section {
    background: #f9fafb;
    padding: 80px 0;
}

.dtf-option-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dtf-option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.dtf-card-header {
    padding: 15px 20px;
    text-align: center;
}

.dtf-card-header.bg-primary {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%) !important;
}

.dtf-card-header.bg-info {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%) !important;
}

.dtf-card-header.bg-danger {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%) !important;
}

.dtf-card-label {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
    margin: 0;
}

.dtf-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f3f4f6;
}

.dtf-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dtf-option-card:hover .dtf-card-image img {
    transform: scale(1.05);
}

.dtf-card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dtf-card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 12px;
}

.dtf-card-price {
    font-size: 14px;
    color: var(--primary-yellow-orange);
    margin-bottom: 15px;
}

.dtf-card-price strong {
    font-weight: 700;
}

.dtf-card-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Chat Button */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-yellow-orange) 0%, var(--accent-orange) 100%);
    color: #FFFFFF;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 167, 38, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 167, 38, 0.6);
}

.chat-button:active {
    transform: scale(0.95);
}

/* Responsive DTF Selection */
@media (max-width: 992px) {
    .dtf-selection-section {
        padding: 60px 0;
    }
    
    .dtf-option-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .dtf-selection-section {
        padding: 40px 0;
    }
    
    .dtf-card-image {
        height: 200px;
    }
    
    .chat-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
}

/* Video Background Section */
.video-section {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.video-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    color: #FFFFFF;
    padding: 40px 20px;
}

.video-text {
    max-width: 800px;
    margin: 0 auto;
}

.video-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.video-title {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 15px;
}

.video-description {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Responsive Video Section */
@media (max-width: 992px) {
    .video-section {
        height: 350px;
    }
    
    .video-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .video-section {
        height: 300px;
    }
    
    .video-subtitle {
        font-size: 12px;
    }
    
    .video-title {
        font-size: 1.8rem;
    }
    
    .video-description {
        font-size: 14px;
    }
}

/* Print Any Design Section */
.print-design-section {
    background: #f9fafb;
    padding: 80px 0;
}

.print-design-content {
    padding-right: 40px;
}

.print-design-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.3;
    margin-bottom: 20px;
}

.print-design-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.product-showcase {
    padding-left: 20px;
}

.showcase-item {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.showcase-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.showcase-label {
    padding: 12px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    background: #FFFFFF;
}

/* Responsive Print Design Section */
@media (max-width: 992px) {
    .print-design-section {
        padding: 60px 0;
    }
    
    .print-design-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .print-design-title {
        font-size: 1.8rem;
    }
    
    .product-showcase {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .print-design-section {
        padding: 40px 0;
    }
    
    .print-design-title {
        font-size: 1.5rem;
    }
    
    .print-design-description {
        font-size: 14px;
    }
    
    .showcase-label {
        font-size: 11px;
        padding: 10px 8px;
    }
}

/* Features of DTF Transfers Section */
.dtf-features-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.features-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.features-subtitle {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin-top: 15px;
}

.dtf-feature-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    cursor: pointer;
}

.feature-image-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 20px 15px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.feature-overlay-title {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.dtf-feature-card:hover .feature-image-wrapper img {
    transform: scale(1.05);
}

.dtf-feature-card:hover .feature-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 60%, transparent 100%);
}

.feature-text {
    flex: 1;
}

.feature-text p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Features Section */
@media (max-width: 992px) {
    .dtf-features-section {
        padding: 60px 0;
    }
    
    .features-header {
        margin-bottom: 40px;
    }
    
    .feature-image-wrapper img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .dtf-features-section {
        padding: 40px 0;
    }
    
    .features-subtitle {
        font-size: 14px;
    }
    
    .feature-image-wrapper img {
        height: 200px;
    }
    
    .feature-overlay-title {
        font-size: 1rem;
    }
    
    .feature-text p {
        font-size: 13px;
    }
}

/* Other Products Section */
.other-products-section {
    background: #FFFFFF;
    padding: 80px 0;
}

/* Custom column for 5 items per row */
.col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

@media (max-width: 992px) {
    .col-lg-2-4 {
        width: 33.333333%;
    }
}

@media (max-width: 768px) {
    .col-lg-2-4 {
        width: 50%;
    }
}

.other-product-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.other-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.other-product-image {
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #f9fafb;
}

.other-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.other-product-card:hover .other-product-image img {
    transform: scale(1.1);
}

.other-product-info {
    padding: 20px 15px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.other-product-name {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.other-product-price {
    font-size: 12px;
    color: var(--primary-yellow-orange);
    margin: 0;
}

.other-product-price strong {
    font-weight: 700;
    color: var(--primary-yellow-orange);
}

/* Responsive Other Products */
@media (max-width: 992px) {
    .other-products-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .other-products-section {
        padding: 40px 0;
    }
    
    .other-product-image {
        height: 150px;
    }
    
    .other-product-name {
        font-size: 12px;
        min-height: 35px;
    }
    
    .other-product-price {
        font-size: 11px;
    }
}

/* Pressing DTF Section */
.pressing-section {
    background: #f3f4f6;
    padding: 80px 0;
}

.pressing-content {
    padding-right: 40px;
}

.pressing-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 20px;
}

.pressing-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 30px;
}

.pressing-description strong {
    color: #1f2937;
    font-weight: 700;
}

.btn-pressing {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-yellow-orange) 0%, var(--accent-orange) 100%);
    color: #FFFFFF;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 167, 38, 0.3);
}

.btn-pressing:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 167, 38, 0.5);
    color: #FFFFFF;
}

.pressing-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pressing-image img {
    width: 100%;
    height: auto;
    display: block;
}

.pressing-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #FFFFFF;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pressing-badge span {
    font-size: 13px;
    font-weight: 700;
    color: #DC143C;
    text-align: center;
    line-height: 1.4;
    display: block;
}

/* Responsive Pressing Section */
@media (max-width: 992px) {
    .pressing-section {
        padding: 60px 0;
    }
    
    .pressing-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .pressing-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .pressing-section {
        padding: 40px 0;
    }
    
    .pressing-title {
        font-size: 1.7rem;
    }
    
    .pressing-description {
        font-size: 15px;
    }
    
    .btn-pressing {
        width: 100%;
        justify-content: center;
    }
    
    .pressing-badge {
        bottom: 15px;
        right: 15px;
        padding: 12px 15px;
    }
    
    .pressing-badge span {
        font-size: 11px;
    }
}

/* FAQ Section */
.faq-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: #FFFFFF;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    background: #FFFFFF;
    color: #1f2937;
    font-size: 16px;
    font-weight: 600;
    padding: 20px 25px;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: #f9fafb;
    color: var(--primary-yellow-orange);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #e5e7eb;
}

.accordion-button::after {
    content: '+';
    position: absolute;
    right: 25px;
    font-size: 24px;
    font-weight: 400;
    transition: transform 0.3s ease;
    background-image: none;
}

.accordion-button:not(.collapsed)::after {
    content: '';
    transform: rotate(0deg);
}

.accordion-button:hover {
    background: #f9fafb;
}

.accordion-collapse {
    border-top: 1px solid #e5e7eb;
}

.accordion-body {
    padding: 20px 25px;
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    background: #FFFFFF;
}

/* Responsive FAQ Section */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .accordion-button {
        font-size: 15px;
        padding: 18px 20px;
        padding-right: 50px;
    }
    
    .accordion-button::after {
        right: 20px;
        font-size: 20px;
    }
    
    .accordion-body {
        padding: 18px 20px;
        font-size: 14px;
    }
}

/* CTA Final Section */
.cta-final-section {
    background: linear-gradient(135deg, #0a0c14 0%, #1a1d29 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 167, 38, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--primary-yellow-orange) 0%, var(--accent-orange) 100%);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(255, 167, 38, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 167, 38, 0.6);
    color: #FFFFFF;
}

.btn-cta-secondary {
    background: linear-gradient(135deg, var(--highlight-yellow) 0%, var(--accent-orange) 100%);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(255, 215, 64, 0.4);
}

.btn-cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 64, 0.6);
    color: #FFFFFF;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
}

.cta-feature-item i {
    color: var(--highlight-yellow);
    font-size: 20px;
}

/* Responsive CTA Final Section */
@media (max-width: 992px) {
    .cta-final-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .cta-final-section {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
}




/* ============================================
   PRESSING VIDEO SECTION STYLES
   ============================================ */

.pressing-video-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.pressing-video {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
    object-fit: cover;
    border-radius: 15px;
}


