/* ===================================
   COMPREHENSIVE RESPONSIVE CSS
   Mobile-First Approach with Full Device Coverage
   =================================== */

/* ===================================
   BASE STYLES (Mobile Portrait First - 320px+)
   =================================== */

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Sidebar - Mobile First (Horizontal) */
.brand-sidebar {
    width: 100%;
    height: 75px;
    background: linear-gradient(180deg, #2d2d2d 0%, #212121 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Logo Grid */
.logo-wrapper {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-grid {
    width: 35px;
    height: 35px;
    display: grid;
    grid-template-columns: repeat(3, 9px);
    gap: 3px;
}

.logo-cell {
    width: 9px;
    height: 9px;
    background: #e27726;
    border-radius: 2px;
    animation: pulse-glow 3s ease-in-out infinite;
}

.logo-cell:nth-child(1) { animation-delay: 0s; }
.logo-cell:nth-child(2) { animation-delay: 0.2s; }
.logo-cell:nth-child(3) { animation-delay: 0.4s; }
.logo-cell:nth-child(5) { animation-delay: 0.6s; }
.logo-cell:nth-child(7) { animation-delay: 0.8s; }
.logo-cell:nth-child(9) { animation-delay: 1s; }

@keyframes pulse-glow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.logo-name {
    font-size: 7px;
    font-weight: 800;
    color: white;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

/* Sidebar Menu - Mobile */
.sidebar-menu {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 0;
}

.menu-icon {
    width: 38px;
    height: 38px;
    background: rgba(226, 119, 38, 0.1);
    border: 2px solid rgba(226, 119, 38, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.menu-icon:hover,
.menu-icon.active {
    background: #e27726;
    border-color: #e27726;
    color: white;
}

.menu-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 16px;
    height: 16px;
    background: #2ecc71;
    border-radius: 50%;
    font-size: 9px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 2px solid #212121;
}

/* Social Links - Hidden on Mobile */
.social-links {
    display: none;
}

/* Main Wrapper */
.main-wrapper {
    flex: 1;
    overflow-y: auto;
}

/* Top Bar - Mobile */
.top-bar {
    background: var(--tp-common-white);
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 50;
}

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

.search-box {
    width: 100%;
    padding: 10px 18px 10px 45px;
    border: 2px solid #e27726;
    border-radius: 0.375rem;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-box:focus {
    outline: none;
    border-color: #e27726;
    box-shadow: 0 0 0 4px rgba(226, 119, 38, 0.1);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
}

.top-links {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.top-link {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.top-link:hover {
    color: #e27726;
}

/* Hero Section - Mobile */
.hero-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #212121 100%);
}

.hero-content {
    margin: 0 auto;
    background: linear-gradient(135deg, #2d2d2d 0%, #212121 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Left Hero Content - Mobile */
.hero-left {
    flex: 1;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    color: #e27726;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-tag::before {
    content: '';
    width: 30px;
    height: 2px;
    background: #e27726;
}

.hero-heading {
    font-size: 36px;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-heading .orange-text {
    color: #e27726;
    display: block;
}

.hero-heading .dark-text {
    color: var(--tp-common-white);
    display: block;
}

.hero-text {
    font-size: 14px;
    color: var(--tp-common-white);
    max-width: 100%;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.6;
}

/* Certification Badge - Mobile */
.cert-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fff3e6 0%, #ffe8d1 100%);
    padding: 14px 20px;
    border-radius: 50px;
    margin-bottom: 0;
    border: 2px solid #e27726;
    box-shadow: 0 6px 20px rgba(226, 119, 38, 0.15);
    max-width: 100%;
}

.cert-icon {
    width: 36px;
    height: 36px;
    background: #e27726;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.cert-info {
    font-size: 12px;
    font-weight: 700;
    color: #212121;
}

.cert-sub {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: #666;
    margin-top: 2px;
}

/* Product Mini Cards - Mobile */
.mini-products {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.mini-card {
    position: relative;
    transition: transform 0.3s ease;
}

.mini-card:hover {
    transform: translateY(-8px);
}

.mini-image {
    width: 100px;
    height: 100px;
    background: #f7f4eb;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    margin-bottom: 10px;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.mini-card:hover .mini-image {
    border-color: #e27726;
    box-shadow: 0 12px 35px rgba(226, 119, 38, 0.25);
}

.mini-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-title {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: #212121;
}

.add-circle {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #e27726 0%, #f58b3d 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
    box-shadow: 0 5px 18px rgba(226, 119, 38, 0.4);
    transition: all 0.3s ease;
}

.add-circle:hover {
    transform: translateX(-50%) scale(1.15) rotate(90deg);
    box-shadow: 0 6px 22px rgba(226, 119, 38, 0.6);
}

/* Right Hero - Hidden on Mobile */
.hero-right {
    display: none;
}

.hero-visual {
    position: relative;
    z-index: 5;
}

.image-circle {
    width: 300px;
    height: 300px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@keyframes spin-glow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.main-product-image {
    width: 240px;
    height: 270px;
    object-fit: contain;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
}

.plate-shadow {
    position: absolute;
    bottom: -25px;
    width: 350px;
    height: 100px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* Floating Info Card */
.float-card {
    position: relative;
    top: 0;
    left: 0;
    background: white;
    padding: 15px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    z-index: 15;
    animation: none;
    border-top: 4px solid #e27726;
    margin-bottom: 20px;
}

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

.float-label {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.float-rating {
    font-size: 28px;
    font-weight: 900;
    color: #e27726;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.rating-stars {
    font-size: 14px;
    color: #ffa726;
}

.float-reviews {
    font-size: 11px;
    color: #666;
}

/* Carousel Navigation - Hidden on Mobile */
.carousel-nav {
    display: none;
}

.nav-prev {
    left: 25px;
}

.nav-next {
    right: 25px;
}

/* Shop Collection Section - Mobile */
.collection-area {
    padding: 40px 20px;
    max-width: 100%;
    margin: 0 auto;
}

.section-head {
    text-align: center;
    margin-bottom: 35px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: #fff3e6;
    color: #e27726;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.section-heading {
    font-size: 28px;
    font-weight: 900;
    color: #212121;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-desc {
    font-size: 14px;
    color: #666;
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 10px;
}

/* Collection Grid - Mobile */
.collection-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.collection-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.collection-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
}

.collection-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.collection-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(21,21,21,1) 0%, transparent 100%);
    padding: 20px 15px;
}

.collection-name {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 6px;
}

.collection-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.collection-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: #e27726;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 6px 20px rgba(226, 119, 38, 0.5);
}

.collection-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e27726;
    color: white;
    padding: 6px 14px;
    border-radius: 18px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 12px rgba(226, 119, 38, 0.4);
    z-index: 2;
}

/* Features Section - Mobile */
.features-area {
    padding: 40px 20px;
    background: white;
}

.features-grid {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    background: #f7f4eb;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.feature-icon-wrap {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #e27726 0%, #f58b3d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin: 0 auto 18px;
    box-shadow: 0 8px 25px rgba(226, 119, 38, 0.35);
}

.feature-name {
    font-size: 18px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* Certificates Section - Mobile */
.certificates-area {
    padding: 40px 20px;
    background: linear-gradient(135deg, #f7f4eb 0%, #ffffff 100%);
}

.certificates-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto 35px;
}

.cert-card {
    background: white;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cert-card:hover {
    transform: translateY(-4px);
    border-color: #e27726;
    box-shadow: 0 6px 25px rgba(226, 119, 38, 0.15);
}

.cert-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e27726 0%, #f39c4f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
    box-shadow: 0 3px 12px rgba(226, 119, 38, 0.3);
}

.cert-title {
    font-size: 18px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 10px;
}

.cert-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Trust Badges Row - Mobile */
.trust-badges-row {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #2d2d2d;
}

.badge-item i {
    color: #e27726;
    font-size: 18px;
}

/* CTA Section - Mobile */
.cta-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, #2d2d2d 0%, #212121 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(226,119,38,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-container {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-tag {
    display: inline-block;
    background: rgba(226, 119, 38, 0.2);
    color: #e27726;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(226, 119, 38, 0.3);
}

.cta-heading {
    font-size: 30px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 15px;
}

.cta-heading .orange-text {
    color: #e27726;
}

.cta-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.cta-primary {
    background: #e27726;
    color: white;
    box-shadow: 0 3px 18px rgba(226, 119, 38, 0.4);
}

.cta-primary:hover {
    background: #c76620;
    transform: translateY(-2px);
    box-shadow: 0 5px 22px rgba(226, 119, 38, 0.5);
}

.cta-primary i {
    transition: transform 0.3s ease;
}

.cta-primary:hover i {
    transform: translateX(5px);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.cta-feature-item i {
    color: #e27726;
    font-size: 16px;
    flex-shrink: 0;
}

/* CTA Visual - Mobile */
.cta-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.cta-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.cta-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.badge-content {
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #e27726;
    line-height: 1;
    margin-bottom: 4px;
}

.badge-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #2d2d2d;
}

/* Exclusivity Banner - Mobile */
.exclusivity-banner {
    padding: 50px 20px;
    background: linear-gradient(135deg, #2d2d2d 0%, #212121 100%);
    position: relative;
    overflow: hidden;
}

.exclusivity-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(226, 119, 38, 0.1) 0%, transparent 70%);
}

.exclusivity-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.exclusivity-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e27726 0%, #f39c4f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: white;
    box-shadow: 0 6px 25px rgba(226, 119, 38, 0.4);
}

.exclusivity-heading {
    font-size: 26px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 15px;
}

.exclusivity-heading .orange-text {
    color: #e27726;
}

.exclusivity-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}

.exclusivity-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #e27726;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    display: none;
}

/* Newsletter CTA - Mobile */
.newsletter-cta {
    padding: 50px 20px;
    background: linear-gradient(135deg, #e27726 0%, #d96b1f 100%);
    text-align: center;
}

.newsletter-wrap {
    max-width: 100%;
    margin: 0 auto;
}

.newsletter-heading {
    font-size: 28px;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.newsletter-subtext {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 16px 22px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
}

.submit-btn {
    padding: 16px 35px;
    background: #212121;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #2d2d2d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}


/* ===================================
   MOBILE LANDSCAPE (480px - 599px)
   =================================== */
@media only screen and (min-width: 480px) and (max-width: 599px) {
    .hero-heading {
        font-size: 42px;
    }

    .section-heading {
        font-size: 32px;
    }

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

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

/* ===================================
   TABLET PORTRAIT (600px - 767px)
   =================================== */
@media only screen and (min-width: 600px) and (max-width: 767px) {
    .hero-heading {
        font-size: 48px;
    }

    .hero-text {
        font-size: 15px;
    }

    .section-heading {
        font-size: 36px;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

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

/* ===================================
   TABLET LANDSCAPE (768px - 1023px)
   =================================== */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .top-bar {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .hero-left {
        padding: 45px 35px;
    }

    .hero-heading {
        font-size: 58px;
    }

    .hero-text {
        font-size: 16px;
    }

    .section-heading {
        font-size: 42px;
    }

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

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

    .certificates-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cta-heading {
        font-size: 38px;
    }

    .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .cta-btn {
        width: auto;
    }
}

/* ===================================
   SMALL DESKTOP (1024px - 1279px)
   =================================== */
@media only screen and (min-width: 1024px) {
    .page-container {
        flex-direction: row;
    }

    /* Sidebar - Vertical Desktop */
    .brand-sidebar {
        width: 90px;
        height: 100vh;
        flex-direction: column;
        padding: 35px 0;
        position: sticky;
        top: 0;
    }

    .logo-wrapper {
        margin-bottom: 45px;
    }

    .logo-grid {
        width: 45px;
        height: 45px;
        grid-template-columns: repeat(3, 11px);
        gap: 4px;
        margin-bottom: 12px;
    }

    .logo-cell {
        width: 11px;
        height: 11px;
    }

    .logo-name {
        font-size: 8px;
    }

    .sidebar-menu {
        flex-direction: column;
        gap: 22px;
        margin-bottom: 40px;
    }

    .menu-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .social-links {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-top: auto;
    }

    .social-btn {
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(226, 119, 38, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 15px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-btn:hover {
        background: #e27726;
        border-color: #e27726;
        transform: scale(1.15);
    }

    .top-bar {
        flex-direction: row;
        padding: 15px 30px;
    }

    .top-links {
        gap: 25px;
        justify-content: flex-end;
    }

    .hero-content {
        flex-direction: row;
    }

    .hero-left {
        padding: 60px 50px;
    }

    .hero-heading {
        font-size: 68px;
        margin-bottom: 25px;
    }

    .hero-text {
        font-size: 17px;
        max-width: 500px;
        margin-bottom: 28px;
    }

    .hero-tag {
        font-size: 12px;
        margin-bottom: 22px;
    }

    .cert-box {
        padding: 16px 26px;
        max-width: 500px;
    }

    .cert-icon {
        width: 40px;
        height: 40px;
        font-size: 19px;
    }

    .cert-info {
        font-size: 13px;
    }

    .hero-right {
        display: flex;
        width: 500px;
        padding: 40px;
        background: linear-gradient(135deg, #f7f4eb 0%, #fff 100%);
        align-items: center;
        justify-content: center;
        position:relative;
    }

    .image-circle {
        width: 380px;
        height: 380px;
    }

    .main-product-image {
        width: 300px;
        height: 340px;
    }

    .plate-shadow {
        width: 420px;
        height: 120px;
    }

    .float-card {
        position: absolute;
        top: 50px;
        left: -140px;
        max-width: 260px;
        animation: float-up-down 4s ease-in-out infinite;
        margin-bottom: 0;
    }

    .carousel-nav {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 52px;
        height: 52px;
        background: white;
        border: none;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        z-index: 20;
        color: #212121;
        font-size: 18px;
    }

    .carousel-nav:hover {
        background: #e27726;
        color: white;
        transform: translateY(-50%) scale(1.1);
    }

    .collection-area {
        padding: 60px 40px;
    }

    .section-heading {
        font-size: 48px;
    }

    .section-desc {
        font-size: 16px;
        max-width: 600px;
    }

    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .collection-img {
        height: 280px;
    }

    .features-area {
        padding: 60px 40px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    .certificates-area {
        padding: 60px 40px;
    }

    .certificates-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }

    .trust-badges-row {
        gap: 35px;
    }

    .cta-section {
        padding: 80px 40px;
    }

    .cta-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .cta-heading {
        font-size: 42px;
    }

    .cta-text {
        font-size: 17px;
    }

    .cta-buttons {
        flex-direction: row;
    }

    .cta-btn {
        width: auto;
    }

    .exclusivity-banner {
        padding: 70px 40px;
    }

    .exclusivity-content {
        max-width: 800px;
    }

    .exclusivity-heading {
        font-size: 38px;
    }

    .exclusivity-text {
        font-size: 17px;
    }

    .exclusivity-stats {
        gap: 35px;
    }

    .stat-divider {
        display: block;
        width: 1px;
        height: 60px;
        background: rgba(255, 255, 255, 0.2);
    }

    .newsletter-cta {
        padding: 70px 40px;
    }

    .newsletter-wrap {
        max-width: 650px;
    }

    .newsletter-heading {
        font-size: 42px;
    }

    .newsletter-subtext {
        font-size: 16px;
    }

    .newsletter-form {
        flex-direction: row;
        max-width: 550px;
    }

    .email-input {
        padding: 18px 26px;
    }

    .submit-btn {
        padding: 18px 40px;
    }
}

/* ===================================
   STANDARD DESKTOP (1280px - 1439px)
   =================================== */
@media only screen and (min-width: 1280px) {
    .hero-heading {
        font-size: 78px;
    }

    .hero-text {
        font-size: 18px;
        max-width: 550px;
    }

    .hero-right {
        width: 550px;
        padding: 50px;
    }

    .image-circle {
        width: 420px;
        height: 420px;
    }

    .main-product-image {
        width: 320px;
        height: 360px;
    }

    .plate-shadow {
        width: 460px;
        height: 130px;
    }

    .float-card {
        left: -150px;
        max-width: 290px;
    }

    .collection-area {
        padding: 70px 50px;
        max-width: 1400px;
    }

    .section-heading {
        font-size: 52px;
    }

    .section-desc {
        max-width: 650px;
    }

    .collection-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 35px;
    }

    .collection-img {
        height: 300px;
    }

    .features-grid {
        max-width: 1400px;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
    }

    .cta-container {
        max-width: 1200px;
        gap: 60px;
    }

    .cta-heading {
        font-size: 48px;
    }

    .exclusivity-content {
        max-width: 900px;
    }

    .exclusivity-heading {
        font-size: 42px;
    }

    .exclusivity-text {
        font-size: 18px;
    }

    .stat-number {
        font-size: 36px;
    }

    .newsletter-wrap {
        max-width: 750px;
    }

    .newsletter-heading {
        font-size: 48px;
    }

    .newsletter-subtext {
        font-size: 17px;
    }

    .newsletter-form {
        max-width: 600px;
    }

    .email-input {
        padding: 20px 28px;
    }

    .submit-btn {
        padding: 20px 45px;
    }
}

/* ===================================
   LARGE DESKTOP (1440px - 1919px)
   =================================== */
@media only screen and (min-width: 1440px) {
    .hero-heading {
        font-size: 86px;
    }

    .collection-area {
        max-width: 1500px;
    }
}

/* ===================================
   EXTRA LARGE DESKTOP (1920px+)
   =================================== */
@media only screen and (min-width: 1920px) {
    .hero-heading {
        font-size: 92px;
    }

    .hero-content {
        max-width: 1920px;
        margin: 0 auto;
    }

    .collection-area {
        max-width: 1600px;
    }
}

/* ===================================
   LANDSCAPE ORIENTATION SPECIFIC
   =================================== */
@media only screen and (orientation: landscape) and (max-height: 500px) {
    .hero-left {
        padding: 25px 30px;
    }

    .hero-heading {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .hero-text {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .hero-tag {
        margin-bottom: 12px;
    }

    .cert-box {
        padding: 12px 18px;
    }

    .mini-products {
        gap: 12px;
    }

    .mini-image {
        width: 80px;
        height: 80px;
    }
}

/* ===================================
   HIGH DPI / RETINA DISPLAYS
   =================================== */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
       only screen and (min-resolution: 192dpi) {
    .main-product-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }

    .collection-img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .brand-sidebar,
    .carousel-nav,
    .social-links,
    .newsletter-cta {
        display: none !important;
    }

    .page-container {
        display: block;
    }

    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }
}
