/* Seller Profile Styles - New Layout Design */

/* Seller Sidebar Styles */
.seller-sidebar {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 0;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.sidebar-section {
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem;
}

.sidebar-section:last-child {
    border-bottom: none;
}

.sidebar-section h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-section h4 i {
    color: #f97316;
    font-size: 0.8rem;
}

.sidebar-content {
    font-size: 0.85rem;
}

/* Company Info Section */
.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
}

.info-item .label {
    color: #6c757d;
    font-weight: 500;
}

.info-item .value {
    color: #2c3e50;
    font-weight: 600;
}

/* Quick Actions Section */
.sidebar-btn {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.sidebar-btn:last-child {
    margin-bottom: 0;
}

.sidebar-btn.primary {
    background: #97144D;
    color: white;
}

.sidebar-btn.primary:hover {
    background: #7a103f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(151, 20, 77, 0.3);
}

.sidebar-btn.secondary {
    background: #97144D;
    color: white;
}

.sidebar-btn.secondary:hover {
    background: #7a103f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(151, 20, 77, 0.3);
}

.sidebar-btn.outline {
    background: white;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.sidebar-btn.outline:hover {
    background: #f8f9fa;
    color: #495057;
    border-color: #adb5bd;
}

/* Categories Section */
.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-tag {
    background: #f1f3f4;
    color: #5f6368;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.category-tag:hover {
    background: #e8eaed;
    color: #3c4043;
}

/* Export Markets Section */
.export-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.export-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #495057;
}

.export-more {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
}

/* Certifications Section */
.cert-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: #495057;
}

.cert-item i {
    width: 16px;
    text-align: center;
}

/* Payment Methods Section */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: #495057;
}

.payment-item i {
    color: #6c757d;
    width: 16px;
    text-align: center;
}

/* Quick Contact Section */
.quick-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: #495057;
}

.contact-row i {
    color: #f97316;
    width: 16px;
    text-align: center;
}

/* Trust Indicators Section */
.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
}

.trust-icon.verified {
    background: linear-gradient(135deg, #10b981, #059669);
}

.trust-icon.rating {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.trust-icon.response {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.trust-title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.8rem;
}

.trust-desc {
    color: #6c757d;
    font-size: 0.75rem;
}

/* Responsive Sidebar */
@media (max-width: 992px) {
    .seller-sidebar {
        margin-bottom: 1.5rem;
    }
    
    .sidebar-section {
        padding: 1rem;
    }
    
    .sidebar-section h4 {
        font-size: 0.85rem;
    }
    
    .sidebar-btn {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .seller-sidebar {
        margin-bottom: 1rem;
    }
    
    .sidebar-section {
        padding: 0.75rem;
    }
    
    .sidebar-section h4 {
        font-size: 0.8rem;
    }
    
    .sidebar-btn {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .category-tags {
        gap: 0.25rem;
    }
    
    .category-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Navigation */
.seller-header-nav {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

.header-left .logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
    border-radius: 4px;
    background: white;
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.header-left .logo i {
    font-size: 1.5rem;
}

.header-center .page-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: white;
    text-align: center;
}

.header-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-1px);
}

/* Modern Hero Section */
.modern-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, -20px) rotate(120deg); }
    66% { transform: translate(20px, -10px) rotate(240deg); }
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.9) 0%, 
        rgba(118, 75, 162, 0.9) 50%, 
        rgba(240, 147, 251, 0.9) 100%);
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 0.7; }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    min-height: 40vh;
}

/* Left Side - Company Info */
.hero-left {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.company-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.company-logo-container {
    position: relative;
}

.company-logo {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.company-logo:hover {
    transform: scale(1.1) rotate(3deg);
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-fallback {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.logo-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #667eea);
    border-radius: 30px;
    z-index: -1;
    animation: logoGlow 3s linear infinite;
    opacity: 0.5;
}

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

.company-info {
    flex: 1;
}

.company-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin: 0 0 0.8rem 0;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { text-shadow: 0 4px 8px rgba(0,0,0,0.3); }
    to { text-shadow: 0 4px 20px rgba(255,255,255,0.3); }
}

.company-type {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    margin-top: 0.3rem;
}

.trust-badges {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 16px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: badgeFloat 3s ease-in-out infinite;
}

.trust-badge:nth-child(1) { animation-delay: 0s; }
.trust-badge:nth-child(2) { animation-delay: 0.5s; }
.trust-badge:nth-child(3) { animation-delay: 1s; }

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

.trust-badge:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px) scale(1.05);
}

.trust-badge.verified {
    background: rgba(76, 175, 80, 0.3);
    border-color: rgba(76, 175, 80, 0.5);
}

.company-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.company-description {
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-out 0.5s both;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.company-description p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.key-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    animation: fadeIn 1s ease-out 0.8s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.2));
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.feature-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
}

.feature-desc {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
}

/* Right Side - Business Details & Actions */
.hero-right {
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.business-details {
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.08));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    padding: 0.8rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.business-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #2196F3, #FF9800, #4CAF50);
    background-size: 200% 100%;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.details-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.6rem 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.details-title::before {
    content: '';
    width: 3px;
    height: 16px;
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.3);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
}

.detail-card {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.4s ease;
}

.detail-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.detail-card:hover::before {
    left: 100%;
}

.detail-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.detail-card:hover .detail-icon {
    transform: scale(1.1) rotate(3deg);
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.2));
}

.detail-info {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    position: relative;
    z-index: 2;
}

.detail-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.detail-value {
    font-size: 0.75rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.action-panel {
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.08));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    padding: 0.8rem;
    position: relative;
    overflow: hidden;
}

.action-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2196F3, #9C27B0, #FF5722, #2196F3);
    background-size: 200% 100%;
    animation: gradientShift 4s ease-in-out infinite reverse;
}

.action-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.6rem 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.action-title::before {
    content: '';
    width: 3px;
    height: 16px;
    background: linear-gradient(135deg, #2196F3, #9C27B0);
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(33, 150, 243, 0.3);
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.2rem;
    margin-bottom: 0.6rem;
}

.action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.3rem 0.2rem;
    border: none;
    border-radius: 5px;
    font-size: 0.45rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 100%;
}

.action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.4s ease;
}

.action-button:hover::before {
    left: 100%;
}

.action-button.primary {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
}

.action-button.primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.action-button.secondary {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
    box-shadow: 0 3px 10px rgba(33, 150, 243, 0.3);
}

.action-button.secondary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.action-button.outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 3px 10px rgba(255,255,255,0.1);
}

.action-button.outline:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

.action-button i {
    font-size: 0.55rem;
    transition: all 0.3s ease;
}

.action-button:hover i {
    transform: scale(1.2) rotate(5deg);
}

.action-button span {
    font-size: 0.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1px;
}

.quick-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    padding: 0.6rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.6rem;
    transition: all 0.3s ease;
    padding: 0.3rem;
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
}

.contact-item:hover {
    color: white;
    background: rgba(255,255,255,0.1);
    transform: translateX(2px);
}

.contact-item i {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.contact-item:hover i {
    color: white;
    transform: scale(1.1);
}

.seller-basic-info {
    flex: 1;
    min-width: 250px;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.company-name {
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0 0 1.5rem 0;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.company-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
    animation: widthGrow 2s ease-out;
}

@keyframes widthGrow {
    from { width: 0; }
    to { width: 100px; }
}

.seller-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    white-space: nowrap;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.badge:hover::before {
    left: 100%;
}

.badge.verified {
    background: rgba(39,174,96,0.25);
    border-color: rgba(39,174,96,0.6);
    color: #27ae60;
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(39,174,96,0.5); }
    50% { box-shadow: 0 0 20px rgba(39,174,96,0.8); }
}

.badge.rating {
    background: rgba(243,156,18,0.25);
    border-color: rgba(243,156,18,0.6);
    color: #f39c12;
}

.badge.location {
    background: rgba(52,152,219,0.25);
    border-color: rgba(52,152,219,0.6);
    color: #3498db;
}

.badge.experience {
    background: rgba(155,89,182,0.25);
    border-color: rgba(155,89,182,0.6);
    color: #9b59b6;
}

.badge i {
    font-size: 1rem;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Company Short About */
.company-short-about {
    margin-top: 1.5rem;
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.about-text {
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: textShine 3s ease-in-out infinite;
}

@keyframes textShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 15px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.95);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    animation: highlightFadeIn 0.8s ease-out 0.8s both;
}

.highlight-item:nth-child(1) {
    animation-delay: 0.8s;
}

.highlight-item:nth-child(2) {
    animation-delay: 0.9s;
}

.highlight-item:nth-child(3) {
    animation-delay: 1s;
}

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

.highlight-item:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.highlight-item i {
    color: #2ecc71;
    font-size: 1rem;
    animation: highlightIconPulse 2s ease-in-out infinite;
}

@keyframes highlightIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Seller Hero Details */
.seller-hero-details {
    margin-top: 1.5rem;
    animation: fadeIn 0.8s ease-out 1s both;
}

.hero-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.6rem;
    padding: 1rem;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
}

.hero-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.8rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.hero-detail-item:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-detail-item:hover::before {
    left: 100%;
}

.detail-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.detail-label::before {
    content: '';
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(52,152,219,0.3);
    animation: dotPulse 2s ease-in-out infinite;
}

.detail-value {
    font-size: 0.8rem;
    color: white;
    font-weight: 600;
    background: rgba(255,255,255,0.08);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.detail-value:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    transform: scale(1.05);
}

.seller-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 220px;
    flex-shrink: 0;
    animation: slideInRight 0.8s ease-out 0.6s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.action-btn {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    text-decoration: none;
    min-height: 50px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.action-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

.chat-btn {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: 2px solid rgba(39,174,96,0.3);
    box-shadow: 0 4px 15px rgba(39,174,96,0.3);
}

.chat-btn:hover {
    background: linear-gradient(135deg, #229954, #27ae60);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(39,174,96,0.4);
    border-color: rgba(39,174,96,0.5);
}

.chat-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.call-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: 2px solid rgba(231,76,60,0.3);
    box-shadow: 0 4px 15px rgba(231,76,60,0.3);
}

.call-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(231,76,60,0.4);
    border-color: rgba(231,76,60,0.5);
}

.call-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.inquiry-btn {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border: 2px solid rgba(243,156,18,0.3);
    box-shadow: 0 4px 15px rgba(243,156,18,0.3);
}

.inquiry-btn:hover {
    background: linear-gradient(135deg, #e67e22, #d68910);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(243,156,18,0.4);
    border-color: rgba(243,156,18,0.5);
}

.inquiry-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.save-btn {
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
    box-shadow: 0 4px 15px rgba(255,255,255,0.1);
}

.save-btn:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.2));
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.6);
}

.save-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.save-btn.saved {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-color: rgba(231,76,60,0.6);
    animation: savedPulse 0.6s ease;
}

@keyframes savedPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.save-btn.saved i {
    color: #ff6b6b;
    animation: heartBeat 1s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(0.95); }
    75% { transform: scale(1.05); }
}

/* Navigation Tabs */
.seller-tabs-nav {
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    position: sticky;
    top: 60px;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.tabs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #97144D #f8f9fa;
}

.nav-tabs::-webkit-scrollbar {
    height: 4px;
}

.nav-tabs::-webkit-scrollbar-track {
    background: #f8f9fa;
}

.nav-tabs::-webkit-scrollbar-thumb {
    background: #97144D;
    border-radius: 2px;
}

.nav-item {
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #6c757d;
    white-space: nowrap;
    background: white;
    border-right: 1px solid #e9ecef;
    position: relative;
}

.nav-item:last-child {
    border-right: none;
}

.nav-item:hover {
    background: #f8f9fa;
    color: #97144D;
}

.nav-item.active {
    background: white;
    color: #97144D;
    border-bottom-color: #97144D;
    font-weight: 600;
}

.nav-item i {
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

/* Main Content */
.seller-main-content {
    background: #f8f9fa;
    min-height: 60vh;
    padding-top: 2rem;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

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

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

.tab-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
}

/* Overview Tab */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.details-card, .info-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.details-card:hover, .info-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.details-card h3, .info-card h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ecf0f1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.details-card h3::before, .info-card h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: #3498db;
    border-radius: 2px;
}

.details-list, .info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-item, .info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.detail-item:hover, .info-item:hover {
    background: #f8f9fa;
    transform: translateX(4px);
}

.detail-item:last-child, .info-item:last-child {
    border-bottom: none;
}

.detail-item .label, .info-item .label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.detail-item .value, .info-item .value {
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 600;
    background: #f8f9fa;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

/* Featured Products - Modern UI/UX */
.featured-products {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.featured-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #667eea);
    background-size: 200% 100%;
    animation: gradientShift 4s ease-in-out infinite;
}

.featured-products h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.featured-products h3::before {
    content: '';
    width: 5px;
    height: 28px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 3px;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.product-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.8));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #6c757d;
    font-size: 3.5rem;
    position: relative;
}

.image-placeholder::after {
    content: 'No Image';
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info {
    padding: 1rem;
    position: relative;
    z-index: 2;
}

.product-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card:hover .product-name {
    color: #667eea;
}

.product-description {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1rem;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 4px rgba(39, 174, 96, 0.2);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.product-price::before {
    content: '₹';
    font-size: 0.8rem;
    font-weight: 600;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.75rem;
}

.moq {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 0.2rem 0.5rem;
    border-radius: 15px;
    font-weight: 600;
    color: #2c3e50;
    border: 1px solid rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-size: 0.65rem;
}

.rating {
    color: #f39c12;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.7rem;
}

.rating::before {
    content: '⭐';
    font-size: 0.8rem;
}

.contact-supplier-btn {
    width: 100%;
    padding: 0.5rem 0.3rem;
    background: #97144D;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.6rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(151, 20, 77, 0.3);
    margin-bottom: 0.8rem;
}

.contact-supplier-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.4s ease;
}

.contact-supplier-btn:hover {
    background: #7a103f;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(151, 20, 77, 0.4);
}

.contact-supplier-btn:hover::before {
    left: 100%;
}

/* Product Actions Styling */
.product-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.view-mobile-btn {
    padding: 0.4rem 0.8rem;
    background: #97144D;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(151, 20, 77, 0.3);
}

.view-mobile-btn:hover {
    background: #7a103f;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(151, 20, 77, 0.4);
    color: white;
}

.get-quote-btn {
    padding: 0.4rem 0.8rem;
    background: #97144D;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(151, 20, 77, 0.3);
}

.get-quote-btn:hover {
    background: #7a103f;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(151, 20, 77, 0.4);
    color: white;
}

/* Ensure consistent button sizing */
.product-actions .btn {
    min-width: 80px;
    text-align: center;
}

.product-specs {
    margin-bottom: 0.8rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.65rem;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: #6c757d;
    font-weight: 500;
}

.spec-value {
    color: #2c3e50;
    font-weight: 600;
}

.supplier-info {
    margin-bottom: 0.8rem;
}

.supplier-location {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #6c757d;
    font-size: 0.6rem;
    margin-bottom: 0.2rem;
}

.supplier-location i {
    color: #e74c3c;
    font-size: 0.7rem;
}

.supplier-name {
    color: #2c3e50;
    font-weight: 700;
    font-size: 0.7rem;
}

.trust-badges {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.2rem 0.4rem;
    border-radius: 10px;
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.gst {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.badge.trustseal {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
}

.badge.years {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.stars {
    color: #f39c12;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.rating-text {
    color: #6c757d;
    font-size: 0.6rem;
    font-weight: 600;
}

.product-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    margin-top: 1rem;
}

.view-details-btn {
    padding: 0.5rem 0.3rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.6rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.view-details-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.4s ease;
}

.view-details-btn:hover {
    background: linear-gradient(135deg, #764ba2, #f093fb);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(118, 75, 162, 0.4);
}

.view-details-btn:hover::before {
    left: 100%;
}

.inquiry-btn {
    padding: 0.5rem 0.3rem;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.6rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.inquiry-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.4s ease;
}

.inquiry-btn:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.inquiry-btn:hover::before {
    left: 100%;
}

/* All Products Tab - Modern UI/UX */
.all-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

/* About Tab */
.about-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.about-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ecf0f1;
}

.about-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.about-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.about-section p {
    color: #5d6d7e;
    line-height: 1.6;
    margin: 0;
}

/* Reviews Tab */
.reviews-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.review-item {
    padding: 1.5rem;
    border-bottom: 1px solid #ecf0f1;
    transition: all 0.3s ease;
}

.review-item:last-child {
    border-bottom: none;
}

.review-item:hover {
    background: #f8f9fa;
    border-radius: 8px;
}

.review-rating {
    color: #f39c12;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.review-text {
    color: #5d6d7e;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-style: italic;
}

.review-author {
    color: #2c3e50;
    font-weight: 600;
    text-align: right;
}

/* Certificates Tab */
.certificates-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.certificate-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #3498db;
}

.certificate-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.certificate-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.view-btn {
    padding: 0.6rem 1.5rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Contact Tab */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.address-card, .inquiry-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.address-card h4, .inquiry-card h4 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ecf0f1;
}

.address-details p {
    color: #5d6d7e;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-details p {
    color: #5d6d7e;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-details strong {
    color: #2c3e50;
}

.contact-details a {
    color: #3498db;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.inquiry-form .form-group {
    margin-bottom: 1.5rem;
}

.inquiry-form label {
    display: block;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.inquiry-form .form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.inquiry-form .form-control:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52,152,219,0.1);
}

.submit-btn {
    width: 100%;
    padding: 0.8rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* FAQ Tab */
.faq-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.faq-item {
    border-bottom: 1px solid #ecf0f1;
    margin-bottom: 1rem;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #3498db;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.faq-question i {
    color: #6c757d;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 1rem 0;
    color: #5d6d7e;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Videos Tab */
.videos-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.videos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: #ecf0f1;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.video-placeholder i {
    font-size: 4rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.video-placeholder p {
    color: #2c3e50;
    font-weight: 500;
    margin: 0;
}

/* Footer - Using existing footer styles from style.css */

/* Responsive Design */
@media (max-width: 1200px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .header-container {
        padding: 0 1.5rem;
    }
    
    .banner-container {
        padding: 0 1.5rem;
    }
    
    .content-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
        padding: 2rem 0;
    }
    
    .seller-logo-section {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        justify-content: center;
    }
    
    .seller-actions {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        max-width: 500px;
        gap: 0.8rem;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .banner-container {
        padding: 0 1rem;
    }
    
    .content-container {
        padding: 0 1rem;
    }
    
    .nav-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .company-name {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .seller-badges {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .seller-logo {
        width: 120px;
        height: 120px;
    }
    
    .seller-banner {
        padding: 3rem 0;
        min-height: 350px;
    }
    
    .about-text {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .about-highlights {
        gap: 0.8rem;
    }
    
    .highlight-item {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .seller-hero-details {
        margin-top: 1.2rem;
    }
    
    .hero-details-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 0.6rem;
        padding: 0.8rem;
    }
    
    .hero-detail-item {
        padding: 0.4rem 0.6rem;
    }
    
    .detail-label {
        font-size: 0.7rem;
    }
    
    .detail-value {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
        min-height: auto;
    }
    
    .banner-container {
        padding: 0 1rem;
    }
    
    .content-container {
        padding: 0 1rem;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .seller-badges {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .about-text {
        font-size: 0.8rem;
        padding: 0.6rem;
        margin-bottom: 0.7rem;
    }
    
    .about-highlights {
        gap: 0.5rem;
    }
    
    .seller-hero-details {
        margin-top: 1rem;
    }
    
    .hero-details-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 0.5rem;
        padding: 0.6rem;
    }
    
    .hero-detail-item {
        padding: 0.4rem 0.6rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
    
    .detail-label {
        font-size: 0.7rem;
    }
    
    .detail-value {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
        align-self: flex-end;
    }
    
    .highlight-item {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        gap: 0.3rem;
    }
    
    .highlight-item i {
        font-size: 0.85rem;
    }
    
    .seller-hero-details {
        margin-top: 0.8rem;
    }
    
    .hero-details-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 0.4rem;
        padding: 0.5rem;
    }
    
    .hero-detail-item {
        padding: 0.3rem 0.4rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
    
    .detail-label {
        font-size: 0.65rem;
    }
    
    .detail-value {
        font-size: 0.7rem;
        padding: 0.15rem 0.3rem;
        align-self: flex-end;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .all-products-grid {
        grid-template-columns: 1fr;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-container {
        grid-template-columns: 1fr;
    }
    
    .nav-item {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }
    
    .action-btn {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .seller-actions {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .action-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
        min-height: 48px;
    }
    
    .seller-banner {
        padding: 2.5rem 0;
        min-height: 320px;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
    
    .seller-logo {
        width: 100px;
        height: 100px;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .about-text {
        font-size: 0.85rem;
        padding: 0.7rem;
        margin-bottom: 0.8rem;
    }
    
    .about-highlights {
        gap: 0.6rem;
        justify-content: center;
    }
    
    .highlight-item {
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
        gap: 0.4rem;
    }
    
    .highlight-item i {
        font-size: 0.9rem;
    }
    
    .details-card, .info-card {
        padding: 1.5rem;
    }
    
    .featured-products {
        padding: 1.5rem;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .header-left .logo span {
        display: none;
    }
    
    .header-center .page-title {
        font-size: 1rem;
    }
    
    .header-right {
        gap: 0.5rem;
    }
    
    .header-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .banner-content {
        padding: 2rem 0;
    }
    
    .seller-logo {
        width: 80px;
        height: 80px;
        border-radius: 15px;
    }
    
    .company-name {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .seller-actions {
        max-width: 280px;
        gap: 0.6rem;
    }
    
    .action-btn {
        width: 100%;
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .nav-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .nav-item i {
        font-size: 0.9rem;
    }
    
    .details-card, .info-card {
        padding: 1rem;
    }
    
    .featured-products {
        padding: 1rem;
    }
    
    .detail-item, .info-item {
        padding: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .detail-item .value, .info-item .value {
        align-self: flex-end;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    /* Footer responsive handled by existing styles */
    
    .seller-tabs-nav {
        top: 50px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 0.5rem;
    }
    
    .banner-container {
        padding: 0 0.5rem;
    }
    
    .content-container {
        padding: 0 0.5rem;
    }
    
    .seller-logo {
        width: 80px;
        height: 80px;
    }
    
    .company-name {
        font-size: 1.1rem;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .details-card, .info-card {
        padding: 0.8rem;
    }
    
    .featured-products {
        padding: 0.8rem;
    }
    
    .product-info {
        padding: 0.8rem;
    }
    
    /* Modern Hero Section Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        gap: 3rem;
    }
    
    .company-title {
        font-size: 2.5rem;
    }
    
    .hero-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-left {
        animation: fadeIn 1s ease-out;
    }
    
    .hero-right {
        animation: fadeIn 1s ease-out 0.5s both;
    }
    
    .company-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .company-title {
        font-size: 2.2rem;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .key-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .action-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .action-button {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .company-title {
        font-size: 1.8rem;
    }
    
    .company-type {
        font-size: 1rem;
    }
    
    .company-logo {
        width: 100px;
        height: 100px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .trust-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .company-description p {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .feature-title {
        font-size: 0.9rem;
    }
    
    .feature-desc {
        font-size: 0.8rem;
    }
    
    .business-details,
    .action-panel {
        padding: 1.5rem;
    }
    
    .details-title,
    .action-title {
        font-size: 1.2rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-card {
        padding: 0.8rem;
    }
    
    .detail-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .detail-label {
        font-size: 0.8rem;
    }
    
    .detail-value {
        font-size: 0.9rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .action-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .quick-contact {
        gap: 0.6rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .modern-hero {
        padding: 3rem 0;
    }
    
    .hero-container {
        padding: 0 0.8rem;
    }
    
    .company-title {
        font-size: 1.5rem;
    }
    
    .company-type {
        font-size: 0.9rem;
    }
    
    .company-logo {
        width: 80px;
        height: 80px;
    }
    
    .logo-fallback {
        font-size: 2rem;
    }
    
    .trust-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .company-location {
        font-size: 0.9rem;
    }
    
    .company-description p {
        font-size: 0.9rem;
    }
    
    .feature-item {
        padding: 0.6rem;
        gap: 0.6rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .feature-title {
        font-size: 0.85rem;
    }
    
    .feature-desc {
        font-size: 0.75rem;
    }
    
    .business-details,
    .action-panel {
        padding: 1rem;
    }
    
    .details-title,
    .action-title {
        font-size: 1.1rem;
    }
    
    .detail-card {
        padding: 0.6rem;
        gap: 0.8rem;
    }
    
    .detail-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .detail-label {
        font-size: 0.75rem;
    }
    
    .detail-value {
        font-size: 0.85rem;
    }
    
    .action-button {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .contact-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .modern-hero {
        padding: 2rem 0;
    }
    
    .hero-container {
        padding: 0 0.5rem;
    }
    
    .company-title {
        font-size: 1.3rem;
    }
    
    .company-type {
        font-size: 0.8rem;
    }
    
    .company-logo {
        width: 70px;
        height: 70px;
    }
    
    .logo-fallback {
        font-size: 1.8rem;
    }
    
    .trust-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
    }
    
    .company-location {
        font-size: 0.8rem;
    }
    
    .company-description p {
        font-size: 0.85rem;
    }
    
    .feature-item {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .feature-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .feature-title {
        font-size: 0.8rem;
    }
    
    .feature-desc {
        font-size: 0.7rem;
    }
    
    .business-details,
    .action-panel {
        padding: 0.8rem;
    }
    
    .details-title,
    .action-title {
        font-size: 1rem;
    }
    
    .detail-card {
        padding: 0.5rem;
        gap: 0.6rem;
    }
    
    .detail-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .detail-label {
        font-size: 0.7rem;
    }
    
    .detail-value {
        font-size: 0.8rem;
    }
    
    .action-button {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .contact-item {
        font-size: 0.75rem;
    }
}

/* Footer responsive handled by existing styles for all breakpoints */
}

/* Desktop Layout Override for Mobile/Tablet */
@media (max-width: 1200px) {
    .overview-grid { grid-template-columns: 280px 1fr !important; gap: 2rem !important; }
    .hero-content { gap: 4rem !important; grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 992px) {
    .seller-sidebar { margin-bottom: 0 !important; }
    .banner-content { flex-direction: row !important; text-align: left !important; }
    .header-left .logo span { display: inline !important; }
}
@media (max-width: 768px) {
    .header-container { padding: 0 2rem !important; min-height: 64px !important; }
    .modern-hero { min-height: 600px !important; padding: 5rem 0 !important; }
}
@media (max-width: 576px) {
    .modern-hero { padding: 4rem 0 !important; }
    .hero-container { padding: 0 1rem !important; }
    .header-left .logo span { display: inline !important; }
}
@media (max-width: 480px) {
    .modern-hero { padding: 3rem 0 !important; }
    .hero-container { padding: 0 1rem !important; }
}
