/* 
    Enhanced Custom Styles for Canvas - Design & Printing Service
    Matches Old WordPress Aesthetic with Modern Performance
*/

:root {
    --primary-color: #FF8000;
    --primary-hover: #e67300;
    --text-dark: #1a1a1a;
    --text-muted: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
}

/* Global Max Width */
.container {
    max-width: 1200px !important;
}

/* Header Enhancements */
#haru-header {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

#haru-header.sticky {
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

#main-menu li a {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px 12px !important;
    color: #333;
    transition: color 0.3s ease;
    text-decoration: none !important;
}

#main-menu li a:hover {
    color: var(--primary-color);
    text-decoration: none !important;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icons a {
    color: #333;
    font-size: 1.1rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.header-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(255, 128, 0, 0.3);
}

.phone-number {
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/sohel/wp-content/uploads/2023/10/Printing-Stock-Video_compressed.mp4#t=1') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.page-banner h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.breadcrumb-custom {
    font-size: 0.9rem;
    font-weight: 500;
}

.breadcrumb-custom span {
    margin: 0 10px;
    opacity: 0.6;
}

/* Category Filter Buttons */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 50px;
}

.cat-btn {
    padding: 10px 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: #fff;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cat-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.cat-btn:hover:not(.active) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-item {
    text-align: left;
    position: relative;
}

.product-img-wrapper {
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.product-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-item:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.product-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    display: block;
    text-decoration: none;
}

.product-title:hover {
    color: var(--primary-color);
}

.hot-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 10;
}

/* Sidebar (Hidden in new design but kept for reference) */
.product-sidebar {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
}

/* Responsive */
@media (max-width: 1200px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .page-banner h1 { font-size: 2.5rem; }
}

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

/* Hero Section */
.custom-hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: #fff;
}
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
    object-fit: cover;
}
.custom-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}
.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}
.btn-primary-custom {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}
.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    color: #fff;
}

/* Services Section */
.custom-services-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.services-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}
.services-intro h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.icon-wrapper {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Clients Section */
.custom-clients-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}
.custom-clients-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}
.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}
.client-logo-item img {
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}
.client-logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Variation Selector Pills */
.variation-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variation-pill {
    padding: 8px 18px;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    font-weight: 500;
}

.variation-pill:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.variation-pill.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(255, 128, 0, 0.25);
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

/* Addon Select Styles */
.addon-select {
    border-color: #eee;
    font-weight: 500;
    color: #444;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.addon-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 128, 0, 0.15);
    color: #000;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.border-primary-subtle {
    border-color: rgba(255, 128, 0, 0.3) !important;
}

/* Compact Addon Select */
.addon-select-compact {
    border-color: #eee;
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.addon-select-compact:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.15rem rgba(255, 128, 0, 0.1);
}

/* Contact Info Card */
.contact-info-card {
    border: 1px solid #eee !important;
    background: #fdfdfd !important;
}

.contact-info-card i {
    width: 20px;
    text-align: center;
}

/* Global Blue Removal */
a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-hover);
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-primary:hover {
    background-color: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Custom Read More Styles */
.read-more {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-hover);
    padding-left: 5px;
}

.read-more i {
    font-size: 0.7rem;
    margin-left: 5px;
}

/* Breadcrumb Wrapping */
.breadcrumb {
    flex-wrap: wrap !important;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item.active {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Smaller Breadcrumbs */
.breadcrumb.x-small {
    font-size: 0.7rem !important;
}

/* Modern Product Card Styles */
.product-card-modern {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fff;
    border: 1px solid #f0f0f0 !important;
    position: relative !important;
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    border-color: var(--primary-color) !important;
}

.product-img-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #fdfdfd;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.product-card-modern:hover .product-img-box img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 128, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.hover-orange:hover {
    color: var(--primary-color) !important;
}

/* Mobile Menu Enhancements */
#mobileMenu {
    max-height: 80vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 0 0 20px 20px;
}

#mobileMenu .btn-link {
    text-decoration: none;
    font-size: 1.2rem;
}

#mobileMenu .list-unstyled.border-start {
    border-left: 2px solid rgba(255, 128, 0, 0.1) !important;
}

#mobileProductList a:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

.x-small {
    font-size: 0.75rem;
}


/* Improved Tabs & Content */
.nav-pills .nav-link {
    color: #666;
    background: #f8f9fa;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid #eee !important;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 4px 15px rgba(255, 128, 0, 0.2);
}

.tab-content {
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
}

.rich-text-area {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.whatsapp-icon {
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 2px 5px 15px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-text {
    background-color: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    margin-right: -10px;
    padding-right: 25px;
    box-shadow: 2px 5px 10px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-btn:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-icon {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    .whatsapp-text {
        display: none; /* Hide text on mobile for better UX */
    }
}

/* Additional Info Table Styling */
.additional-info-table {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.additional-info-table table {
    margin-bottom: 0;
}

.additional-info-table th {
    background-color: #fcfcfc !important;
    font-weight: 700;
    color: #333;
    width: 35%;
    padding: 20px 30px !important;
    border-color: #f0f0f0 !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.additional-info-table td {
    padding: 20px 30px !important;
    color: #555;
    border-color: #f0f0f0 !important;
    font-weight: 500;
}

.additional-info-table tr:last-child th,
.additional-info-table tr:last-child td {
    border-bottom: none !important;
}

/* Mega Menu Styles */
.has-mega-menu {
    position: static !important;
}

.mega-menu-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-top: 1px solid #f0f0f0;
}

.has-mega-menu:hover .mega-menu-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    padding-bottom: 10px;
    position: relative;
}

.mega-title a {
    color: #000 !important;
    text-decoration: none;
}

.mega-links li {
    margin-bottom: 8px;
}

.mega-links a {
    font-size: 0.9rem;
    color: #555 !important;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.mega-links a:hover {
    color: var(--primary-color) !important;
    transform: translateX(5px);
}

.mega-col {
    border-right: 1px solid #f5f5f5;
}

.mega-col:last-child {
    border-right: none;
}

/* Ensure header container is relative for full-width mega menu positioning */
#haru-header .container {
    position: relative;
}

/* Enhanced Mega Menu Promo Card */
.mega-promo-card {
    height: 100%;
    min-height: 200px;
    background: #000;
}

.promo-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.mega-title i {
    font-size: 1rem;
    opacity: 0.8;
}

.mega-menu-container .container {
    max-width: 1300px !important; /* Slightly wider for the mega menu content */
}

/* Minimalist Hover Slider */
.hero-slider-minimal {
    background: transparent;
}

.hover-image-container {
    transition: all 0.3s ease;
}

.hover-product-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 128, 0, 0.9);
    color: #fff;
    padding: 20px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-image-container:hover .hover-product-label {
    transform: translateY(0);
}

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

.hover-image-container img {
    transition: transform 0.6s ease;
}

/* Product Marquee Styles */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.marquee-item:hover {
    transform: scale(1.05) translateY(-5px);
}

.marquee-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 128, 0, 0.95);
    color: #fff;
    padding: 8px;
    text-align: center;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.marquee-item:hover .marquee-label {
    opacity: 1;
    transform: translateY(0);
}

.marquee-item img {
    border: 1px solid #eee;
}

/* Vertical Single Image Marquee */
@keyframes verticalMarquee {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.marquee-single-content {
    animation: verticalMarquee 60s linear infinite;
}

.marquee-single-wrapper:hover .marquee-single-content {
    animation-play-state: paused;
}

.hover-image-box {
    cursor: pointer;
    transition: all 0.4s ease;
}

.hover-name-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 128, 0, 0.9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 20px;
    text-align: center;
}

.hover-image-box:hover .hover-name-overlay {
    opacity: 1;
}

.marquee-single-item img {
    max-height: 400px;
    width: auto !important;
    margin: 0 auto;
}

/* Creative Hero Styles */
.fw-900 { font-weight: 900 !important; }
.text-white-10 { color: rgba(255,255,255,0.1); }
.bg-white-10 { background: rgba(255,255,255,0.1); }
.border-white-10 { border-color: rgba(255,255,255,0.1) !important; }
.border-white-20 { border-color: rgba(255,255,255,0.2) !important; }
.opacity-05 { opacity: 0.05; }
.text-glow { text-shadow: 0 0 20px rgba(255, 128, 0, 0.4); }

.hover-lift {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 128, 0, 0.3) !important;
}

.floating-stack {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-card {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.floating-stack:hover .glass-card {
    transform: rotate(0) translateX(0) translateY(0) scale(1.05) !important;
    z-index: 10 !important;
}

.icon-circle {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.letter-spacing-2 { letter-spacing: 2px; }

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

.glass-card {
    animation: float 6s ease-in-out infinite;
}

.glass-card:nth-child(2) { animation-delay: -2s; }
.glass-card:nth-child(3) { animation-delay: -4s; }

/* Modern Geometric Layout Styles */
.text-underline-orange {
    position: relative;
    display: inline-block;
}
.text-underline-orange::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(255, 128, 0, 0.2);
    z-index: -1;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.hover-bg-orange:hover {
    background: #FF8000 !important;
    color: #fff !important;
}

.product-item-clean .img-wrap {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-item-clean:hover .img-wrap {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.grid-staggered .col-lg-3:nth-child(even) {
    margin-top: 50px;
}

@media (max-width: 991px) {
    .grid-staggered .col-lg-3:nth-child(even) {
        margin-top: 0;
    }
}

.shadow-hover {
    transition: box-shadow 0.3s ease;
}

.opacity-05 { opacity: 0.05; }
.opacity-10 { opacity: 0.1; }

.h-px { height: 2px; }

/* Pure Minimalist Page Styles */
.hover-border-orange {
    transition: border-color 0.3s ease;
}
.product-item-minimal:hover .img-wrap {
    border-color: #FF8000 !important;
    transform: translateY(-5px);
}

.product-item-minimal .img-wrap {
    background: #f8f9fa;
    border: 1px solid transparent;
}

.letter-spacing-1 { letter-spacing: 1px; }

.fw-800 { font-weight: 800 !important; }

.section-tag {
    letter-spacing: 2px;
    font-size: 0.75rem;
}

/* Layout fix for odd number of addons */
.addon-col:last-child:nth-child(odd) {
    flex: 0 0 100%;
    max-width: 100%;
}
.xx-small { font-size: 0.6rem; }

/* Modern Quantity & Quote Button Styles */
.quantity-group-modern {
    border: 2px solid #ff6b00;
    border-radius: 50px;
    background: #fff;
    overflow: hidden;
}
.btn-qty-minus, .btn-qty-plus {
    background: transparent;
    border: none;
    color: #ff6b00;
    font-size: 0.8rem;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-qty-minus:hover, .btn-qty-plus:hover {
    background: #fff5ee;
}
.border-y-only {
    border-top: none !important;
    border-bottom: none !important;
    border-left: 1px solid #f0f0f0 !important;
    border-right: 1px solid #f0f0f0 !important;
    background: transparent !important;
    box-shadow: none !important;
}
.btn-get-quote {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
}
.btn-get-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4) !important;
    filter: brightness(1.1);
}
.shadow-orange {
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.25);
}
.x-small { font-size: 0.7rem; }
.fw-800 { font-weight: 800 !important; }

/* Custom Styling for Attribute Dropdowns */
.addon-select-compact {
    background-color: #ffffff;
    border: 2px solid #eef0f2 !important;
    border-radius: 12px !important;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3436;
    padding: 0.75rem 1rem !important;
    transition: all 0.3s ease;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff6b00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    appearance: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.addon-select-compact:hover {
    border-color: #ff6b00 !important;
    background-color: #fffaf7;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.08);
}

.addon-select-compact:focus {
    border-color: #ff6b00 !important;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.15) !important;
    outline: none;
}

/* Custom Size Input Styling */
.custom-size-input {
    border: 2px solid #ff6b00 !important;
    border-radius: 12px !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff6b00;
    background-color: #ffffff;
    animation: slideDownIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.custom-size-input::placeholder {
    color: rgba(255, 107, 0, 0.5);
    font-weight: 400;
}

@keyframes slideDownIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header link adjustment */
.mega-links li a {
    transition: all 0.2s ease;
}
.mega-links li a:hover {
    padding-left: 5px;
    color: #ff6b00 !important;
}

/* Custom Checkbox Styling */
.custom-checkbox-modern .form-check-input {
    border-color: #ff6b00;
    cursor: pointer;
}
.custom-checkbox-modern .form-check-input:checked {
    background-color: #ff6b00;
    border-color: #ff6b00;
}
.custom-checkbox-modern .form-check-label {
    cursor: pointer;
    color: #4b4b4b;
    transition: color 0.2s;
}
.custom-checkbox-modern .form-check-label:hover {
    color: #ff6b00;
}

/* Services Section */
.custom-services-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-intro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #2d3436;
}

.services-intro p {
    color: #636e72;
    font-size: 1.1rem;
}

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

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .custom-services-section {
        padding: 60px 0;
    }
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none !important;
    color: inherit;
    border: 1px solid rgba(0,0,0,0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
}

.service-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-card .icon-wrapper svg {
    width: 50px;
    height: 50px;
    fill: var(--primary-color);
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.service-card:hover .icon-wrapper {
    background: var(--primary-color);
}

.service-card:hover .icon-wrapper svg {
    fill: #fff;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2d3436;
}

.service-card p {
    font-size: 0.95rem;
    color: #636e72;
    line-height: 1.6;
    margin: 0;
}
