/* <style> */
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
        }
        
        .logo {
            font-size: 26px;
            font-weight: 800;
            color: white;
            z-index: 1002;
            display: flex;
            align-items: center;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .logo-img {
            height: 42px;
            margin-right: 12px;
            filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3));
        }
        
        .logo span {
            color: #FFD700;
        }
        
        .desktop-nav ul {
            display: flex;
            flex-direction: row;
            align-items: center;
        }
        
        

        .desktop-nav li {
            position: relative;
            margin: 0 12px;
        }
        
        .desktop-nav a {
            padding: 10px 0;
            position: relative;
            font-weight: 600;
            display: flex;
            align-items: center;
            color: white;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        
        .desktop-nav a:hover {
            color: #FFD700;
            transform: translateY(-2px);
        }
        
        .desktop-nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: #FFD700;
            transition: width 0.3s ease;
            border-radius: 2px;
        }
        
        .desktop-nav a:hover:after {
            width: 100%;
        }
        
        /* Updated Dropdown Menu Styles - Two Columns */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: white;
            width: auto;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 10;
            overflow: hidden;
            padding: 0;
        }
        
        .dropdown-columns {
            background: white;
            display: flex;
            /* padding: 25px;
            gap: 30px; */
        }
        
        .dropdown-column {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .dropdown-column h4 {
            padding: 0 0 15px;
            margin: 0 0 15px;
            font-size: 16px;
            color: #2c3e50;
            border-bottom: 2px solid #3498db;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        
        .dropdown-column h4 i {
            margin-right: 10px;
            color: #3498db;
            font-size: 18px;
        }
        
        .dropdown-column li a img {
            width: 20px;
            height: 20px;
            object-fit: contain;
            vertical-align: middle;
            margin-right: 8px;
        }

        .dropdown li {
            margin: 0;
            width: 100%;
        }
        
        .dropdown a {
            /* background-color: yellowgreen; */
            /* width: 120px; */
            padding: 12px 15px;
            display: flex;
            align-items: center;
            color: #555;
            transition: all 0.2s ease;
            border-radius: 6px;
            /* margin-bottom: 8px; */
            font-weight: 500;
        }
        
        .dropdown a i {
            margin-right: 12px;
            width: 20px;
            text-align: center;
            font-size: 16px;
            transition: transform 0.2s ease;
        }
        
        .dropdown a:hover {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            transform: translateX(5px);
            box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
        }
        
        .dropdown a:hover i {
            transform: scale(1.2);
        }
        
        .desktop-nav li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(5px);
        }
        
        .desktop-nav a i.fa-chevron-down {
            margin-left: 5px;
            font-size: 12px;
            transition: transform 0.3s;
        }
        
        .desktop-nav li:hover a i.fa-chevron-down {
            transform: rotate(180deg);
        }
        
        .search-bar {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            padding: 5px;
            backdrop-filter: blur(5px);
        }
        
        .search-bar input {
            padding: 10px 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            width: 220px;
            background: transparent;
            color: white;
            outline: none;
        }
        
        .search-bar input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .search-bar button {
            background: rgba(255, 255, 255, 0.3);
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .search-bar button:hover {
            background: rgba(255, 255, 255, 0.4);
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1002;
            color: white;
        }
        
        /* Mobile Menu (Drawer) */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100vh;
            background: linear-gradient(135deg, #1a2a6c, #b21f1f);
            color: white;
            z-index: 1001;
            transition: right 0.3s ease;
            padding: 70px 20px 20px;
            overflow-y: auto;
        }
        
        .mobile-menu.open {
            right: 0;
        }
        
        .close-menu {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        
        .mobile-nav li {
            margin: 20px 0;
            font-size: 18px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 10px;
        }

        .mobile-nav ul li a img {
            /* margin: 20px 0;
            font-size: 18px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 10px; */
            width: 20px;
            height: 20px;
            object-fit: contain;
            vertical-align: middle;
            margin-right: 8px;
        }
        
        .mobile-dropdown-content {
            display: none;
            padding-left: 15px;
            margin-top: 10px;
        }

        .mobile-dropdown-content li a img {
            /* display: none; */
            /* padding-left: 15px;
            margin-top: 10px; */
            width: 20px;
            height: 20px;
            object-fit: contain;
            vertical-align: middle;
            margin-right: 8px;
        }
        
        .mobile-dropdown.active .mobile-dropdown-content {
            display: block;
        }
        
        .mobile-dropdown-trigger {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }
        
        .mobile-dropdown-trigger i {
            transition: transform 0.3s;
        }
        
        .mobile-dropdown.active .mobile-dropdown-trigger i {
            transform: rotate(180deg);
        }
        
        .mobile-search {
            margin: 20px 0;
            display: flex;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            overflow: hidden;
        }
        
        .mobile-search input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            background: transparent;
            color: white;
            outline: none;
        }
        
        .mobile-search input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .mobile-search button {
            background: rgba(255, 255, 255, 0.3);
            color: white;
            border: none;
            padding: 12px 15px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .mobile-search button:hover {
            background: rgba(255, 255, 255, 0.4);
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: none;
        }
        
        /* Breadcrumb */
        .breadcrumb {
            padding: 15px 0;
            background: #f1f2f6;
            margin-bottom: 30px;
        }
        
        .breadcrumb ul {
            display: flex;
        }
        
        .breadcrumb li {
            margin-right: 10px;
            font-size: 0.9rem;
            color: #7f8c8d;
        }
        
        .breadcrumb li:after {
            content: '/';
            margin-left: 10px;
        }
        
        .breadcrumb li:last-child:after {
            content: '';
        }
        
        .breadcrumb li:last-child {
            color: #3498db;
            font-weight: 500;
        }
        
        /* Main Content with Sidebar */
        .main-content {
            display: flex;
            gap: 30px;
            margin: 40px 0;
        }
        
        /* Sidebar */
        .sidebar {
            flex: 0 0 300px;
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            height: fit-content;
        }
        
        .sidebar-section {
            margin-bottom: 30px;
        }
        
        .sidebar-section:last-child {
            margin-bottom: 0;
        }
        
        .sidebar-section h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3498db;
            color: #2c3e50;
        }
        
        /* Top Brands Section */
        .top-brands {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .brand-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            border-radius: 6px;
            transition: all 0.2s ease;
            border: 1px solid #eee;
            background: #f8f9fa;
        }
        
        .brand-item:hover {
            background: #e9ecef;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        
        .brand-logo {
            width: 40px;
            height: 40px;
            border-radius: 4px;
            overflow: hidden;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .brand-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .brand-name {
            font-weight: 600;
            font-size: 0.95rem;
            color: #2c3e50;
        }
        
        /* Latest Phones Section */
        .latest-phones-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .latest-phone-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px;
            border-radius: 6px;
            transition: all 0.2s ease;
            border: 1px solid #eee;
        }
        
        .latest-phone-item:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        
        .latest-phone-img {
            width: 60px;
            height: 60px;
            border-radius: 4px;
            overflow: hidden;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .latest-phone-img img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .latest-phone-info {
            flex: 1;
        }
        
        .latest-phone-name {
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 5px;
            color: #2c3e50;
        }
        
        .latest-phone-price {
            font-size: 0.85rem;
            color: #e74c3c;
            font-weight: 600;
        }
        
        .ad-space {
            background: linear-gradient(135deg, #3498db, #2c3e50);
            color: white;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        
        .ad-space h4 {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .ad-space p {
            font-size: 0.9rem;
            margin-bottom: 15px;
            opacity: 0.9;
        }
        
        .ad-btn {
            display: inline-block;
            background: #e74c3c;
            color: white;
            padding: 8px 15px;
            border-radius: 4px;
            font-weight: 600;
            transition: background 0.3s;
        }
        
        .ad-btn:hover {
            background: #c0392b;
        }
        
        /* Product Page */
        .product-page {
            flex: 1;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        /* Product Gallery */
        .product-gallery {
            flex: 1;
            min-width: 300px;
        }
        
        .main-image {
            height: 300px;
            width: 300px;
            background: rgb(255, 255, 255);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .main-image img {
            height: 300px;
            width: 300px;
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        
        .thumbnail-container {
            display: flex;
            gap: 10px;
        }
        
        .thumbnail {
            width: 80px;
            height: 80px;
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            border: 2px solid transparent;
            background: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: all 0.2s ease;
        }
        
        .thumbnail.active {
            border-color: #3498db;
            transform: scale(1.05);
        }
        
        .thumbnail:hover {
            border-color: #3498db;
        }
        
        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Product Details */
        .product-details {
            flex: 1;
            min-width: 300px;
        }
        
        .product-title {
            font-size: 28px;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .product-rating {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .stars {
            color: #f39c12;
            margin-right: 10px;
        }
        
        .rating-count {
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        
        .product-price {
            font-size: 24px;
            color: #e74c3c;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .price-note {
            font-size: 0.9rem;
            color: #7f8c8d;
            margin-bottom: 20px;
        }
        
        .color-options {
            margin-bottom: 20px;
        }
        
        .color-options h3 {
            font-size: 1rem;
            margin-bottom: 10px;
        }
        
        .colors {
            display: flex;
            gap: 10px;
        }
        
        .color {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid transparent;
            position: relative;
            transition: transform 0.2s ease;
        }
        
        .color.active {
            border-color: #3498db;
            transform: scale(1.1);
        }
        
        .color:hover {
            transform: scale(1.05);
        }
        
        .color.active:after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 14px;
            text-shadow: 0 0 2px rgba(0,0,0,0.5);
        }
        
        .storage-options {
            margin-bottom: 20px;
        }
        
        .storage-options h3 {
            font-size: 1rem;
            margin-bottom: 10px;
        }
        
        .storages {
            display: flex;
            gap: 10px;
        }
        
        .storage {
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.2s ease;
        }
        
        .storage.active {
            border-color: #3498db;
            background: #3498db;
            color: white;
        }
        
        .storage:hover {
            border-color: #3498db;
        }
        
        .action-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .buy-now {
            background: #e74c3c;
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            flex: 1;
            transition: background 0.3s ease;
        }
        
        .buy-now:hover {
            background: #c0392b;
        }
        
        .add-to-cart {
            background: #3498db;
            color: white;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            flex: 1;
            transition: background 0.3s ease;
        }
        
        .add-to-cart:hover {
            background: #2980b9;
        }
        
        .key-features {
            margin-bottom: 20px;
        }
        
        .key-features h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        .key-features ul {
            padding-left: 20px;
            list-style-type: disc;
        }
        
        .key-features li {
            margin-bottom: 8px;
            color: #555;
        }
        
        /* Key Specs Grid with Icons - 3 columns */
        .key-specs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 30px 0;
            width: 100%;
        }
        
        @media (max-width: 992px) {
            .key-specs-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .key-specs-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .spec-item {
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s ease;
            display: flex;
            align-items: flex-start;
            position: relative;
        }
        
        .spec-item:hover {
            transform: translateY(-5px);
        }
        
        .spec-icon {
            font-size: 24px;
            color: #3498db;
            margin-right: 15px;
            min-width: 30px;
            text-align: center;
        }
        
        .spec-content {
            flex: 1;
        }
        
        .spec-content h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: #2c3e50;
        }
        
        .spec-content p {
            color: #7f8c8d;
            font-size: 0.95rem;
            line-height: 1.5;
            max-height: 4.5em;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .spec-content p.expanded {
            max-height: none;
        }
        
        .see-more-btn {
            background: none;
            border: none;
            color: #3498db;
            font-size: 0.9rem;
            cursor: pointer;
            padding: 5px 0;
            margin-top: 5px;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.2s;
        }
        
        .see-more-btn:hover {
            color: #2980b9;
        }
        
        .see-more-btn i {
            font-size: 0.8rem;
            transition: transform 0.3s;
        }
        
        .see-more-btn.expanded i {
            transform: rotate(180deg);
        }
        
        /* Product Info Tabs */
        .product-info {
            width: 100%;
        }
        
        .tabs {
            display: flex;
            border-bottom: 1px solid #ddd;
            margin-bottom: 20px;
        }
        
        .tab {
            padding: 10px 20px;
            cursor: pointer;
            font-weight: 500;
            transition: color 0.2s ease;
        }
        
        .tab:hover {
            color: #3498db;
        }
        
        .tab.active {
            border-bottom: 2px solid #3498db;
            color: #3498db;
        }
        
        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .tab-content.active {
            display: block;
        }
        
        /* Specifications Table */
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .specs-table th, .specs-table td {
            padding: 5px;
            text-align: left;
            border-bottom: 5px solid #eee;
        }

        .specs-table td {
            font-weight: 600;
            padding: 15px;
        }

        .blue {
            font-weight: 700;
            padding: 15px;
            /*background: #3498db;*/
            background: #34dbd8;
            /*color: white !important;*/
        }

        .red {
            font-weight: 600;
            color: white !important;
            padding: 15px;
            background: #f95757;
        }

        /* .darkwhite {
            background: #e7e2e2;
        } */
        
        .specs-table th {
            color: rgb(0, 0, 0);
            text-align: left;
            font-weight: 600;
            width: 15%;
        }
        
        .specs-table tr:last-child td {
            border-bottom: none;
        }
        
        .specs-table tr:hover {
            background: #f9f9f9;
        }

        
        /* Expandable Rows in Table */
        .expandable-row {
            cursor: pointer;
            transition: background 0.2s;
        }
        
        .expandable-row:hover {
            background: #f0f7ff !important;
        }
        
        .expandable-content {
            display: none;
        }
        
        .expandable-content.show {
            display: table-row;
        }
        
        .expand-icon {
            display: inline-block;
            margin-left: 8px;
            transition: transform 0.3s;
            font-size: 12px;
        }
        
        .expandable-row.expanded .expand-icon {
            transform: rotate(180deg);
            color: #b21f1f;
        }
        
        /* Ad Space in Table */
        .table-ad-long {
            background: linear-gradient(135deg, #9b59b6, #8e44ad);
            color: white;
            text-align: center;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
        }
        
        .table-ad-long h4 {
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .table-ad-row {
            display: flex;
            gap: 15px;
            margin: 20px 0;
        }
        
        .table-ad-item {
            flex: 1;
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .table-ad-item h4 {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        /* Review Section */
        .reviews {
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .review {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        
        .review:last-child {
            border-bottom: none;
        }
        
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        
        .reviewer {
            font-weight: 600;
        }
        
        .review-date {
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        
        /* Related Products */
        .related-products {
            margin: 50px 0;
        }
        
        .section-title {
            font-size: 24px;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3498db;
            display: inline-block;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        @media (min-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (min-width: 992px) {
            .products-grid {
                grid-template-columns: repeat(6, 1fr);
            }
        }
        
        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
        }
        
        .product-card-image {
            height: 220px;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            background-color: #f8f9fa;
            padding: 15px;
        }
        
        .product-card-info {
            flex: 1;
            display: flex;
            justify-content: space-between;
            flex-direction: column;
            padding: 15px;
        }
        
        .product-card-title {
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 16px;
            min-height: 40px;
            line-height: 1.3;
        }
        
        .product-card-price {
            color: #e74c3c;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .product-card-btn {
            background: #3498db;
            color: white;
            text-align: center;
            padding: 8px;
            border-radius: 4px;
            font-weight: 600;
            display: block;
            margin-top: auto;
            transition: background 0.3s ease;
        }
        
        .product-card-btn:hover {
            background: #2980b9;
        }
        
        /* iPhone Comparison Table */
        .comparison-section {
            margin: 50px 0;
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .comparison-table th, .comparison-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .comparison-table th {
            background: #3498db;
            color: white;
            font-weight: 600;
        }
        
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        
        .comparison-table tr:hover {
            background: #f9f9f9;
        }
        
        .highlight-row {
            background-color: #f0f8ff;
        }
        
        .highlight-row:hover {
            background-color: #e6f3ff;
        }
        
        /* About Apple Section */
        .about-apple {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin: 50px 0;
        }
        
        .about-apple h2 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #2c3e50;
            border-bottom: 2px solid #3498db;
            padding-bottom: 10px;
            display: inline-block;
        }
        
        .about-apple p {
            margin-bottom: 15px;
            color: #555;
            line-height: 1.7;
        }
        
        /* Footer Styles */
        footer {
            background: #2c3e50;
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        @media (min-width: 768px) {
            .footer-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #4a6580;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a:hover {
            color: #3498db;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #4a6580;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            transition: background 0.3s ease;
        }
        
        .social-links a:hover {
            background: #3498db;
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #4a6580;
            color: #95a5a6;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .search-bar input {
                width: 150px;
            }
            
            .main-content {
                flex-direction: column;
            }
            
            .sidebar {
                flex: 1;
                order: 2;
            }
            
            .product-page {
                order: 1;
            }
        }
        
        @media (max-width: 868px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .header-container {
                padding: 12px 0;
            }
        }
        
        @media (max-width: 768px) {
            .search-bar {
                display: none;
            }
            
            .product-page {
                flex-direction: column;
            }
            
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .logo {
                font-size: 20px;
            }
            
            .key-specs-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .table-ad-row {
                flex-direction: column;
            }
            
            .top-brands {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .products-grid {
                /* background-color: yellowgreen; */
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .action-buttons {
                flex-direction: column;
            }
            
            .storages {
                flex-wrap: wrap;
            }
            
            .tabs {
                flex-wrap: wrap;
            }
            
            .specs-table th, .specs-table td {
                padding: 10px;
                font-size: 0.9rem;
            }
            
            .comparison-table th, .comparison-table td {
                padding: 10px;
                font-size: 0.9rem;
            }
            
            .thumbnail-container {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .product-title {
                font-size: 24px;
            }
            
            .key-specs-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Added styles for better mobile experience */
        @media (max-width: 480px) {
            .main-image {
                height: 300px;
            }
            
            .thumbnail {
                width: 60px;
                height: 60px;
            }
            
            .product-price {
                font-size: 22px;
            }
            
            .action-buttons button {
                padding: 15px;
                font-size: 16px;
            }
        }
    /* </style> */