/* ================================================================
   SINGLE TOOLS PRICING - CONSOLIDATED CSS
   Clean and organized styles for both Personal and Shared tools pages
   ================================================================ */

/* ================================================================
   1. STOCK OUT BUTTON STYLES
   ================================================================ */
.btn-out-of-stock {
    background: #333333;
    color: white;
    cursor: not-allowed;
    width: 100%;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    border-radius: 50px;
    opacity: 0.9;
    box-shadow: none;
}

.btn-out-of-stock:hover {
    background: #444444;
}

/* ================================================================
   2. CSS VARIABLES (ROOT)
   ================================================================ */
:root {
    --primary-color: #2a9d8f;
    --primary-dark: #21867a;
    --primary-light: rgba(42, 157, 143, 0.1);
    --secondary-color: #e76f51;
    --secondary-dark: #e05d3d;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-medium: #555555;
    --background-color: #f5f7fa;
    --card-color: #ffffff;
    --border-color: #ddd;
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition-normal: 0.3s ease;
    --transition-speed: 0.3s;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --danger-color: #f44336;
    --info-color: #2196f3;
}

/* ================================================================
   3. GLOBAL RESET & BASE STYLES
   ================================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #f5f7fa, #c3cfe2);
    padding: 100px 10px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    flex: 1;
}

/* ================================================================
   4. NAVBAR STYLES
   ================================================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    padding: 0 20px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    height: 70px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(42, 157, 143, 0.95);
    backdrop-filter: blur(5px);
    height: 60px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    z-index: 1002;
}

.logo-img {
    height: 70px;
}

/* Desktop Menu Styles */
.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    transition: all 0.3s ease;
}

.menu li {
    position: relative;
}

.menu a {
    display: block;
    color: white;
    text-align: center;
    padding: 25px 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.scrolled .menu a {
    padding: 20px 16px;
}

.menu a:hover,
.menu a.active {
    background-color: var(--primary-dark);
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
}

/* Dropdown Styles */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover,
.dropdown-content a.active {
    background-color: #f5f5f5;
    color: #2a9d8f;
}

.dropdown:after {
    content: "▼";
    font-size: 10px;
    color: white;
    position: absolute;
    right: 5px;
    top: 25px;
    transition: transform 0.3s ease;
}

.scrolled .dropdown:after {
    top: 20px;
}

.dropdown:hover:after {
    transform: rotate(180deg);
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
}

.login-btn,
.signup-btn {
    display: flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.login-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    margin-left: 15px;
}

.login-btn:hover {
    background-color: #e05d3d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.signup-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 10px;
}

.signup-btn:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.login-btn i,
.signup-btn i {
    margin-right: 8px;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 1002;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px;
    width: 44px;
    height: 44px;
    border-radius: 4px;
}

.menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-toggle:focus {
    outline: none;
}

/* Animated Hamburger Icon */
.hamburger {
    width: 24px;
    height: 20px;
    position: relative;
    margin: 0 auto;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: white;
    border-radius: 4px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
    width: 80%;
    right: 0;
    left: auto;
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
    top: 9px;
}

.hamburger span:nth-child(4) {
    top: 18px;
    width: 80%;
    right: 0;
    left: auto;
}

.hamburger.open span:nth-child(1) {
    top: 9px;
    width: 0%;
    left: 50%;
}

.hamburger.open span:nth-child(2) {
    transform: rotate(45deg);
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.hamburger.open span:nth-child(4) {
    top: 9px;
    width: 0%;
    left: 50%;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 1001;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    padding-top: 70px;
}

.mobile-menu.open {
    right: 0;
}

.menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1002;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.menu-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-list a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.mobile-menu-list a:hover,
.mobile-menu-list a.active {
    background-color: var(--primary-dark);
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
}

/* Mobile dropdown styles */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown > a {
    position: relative;
}

.mobile-dropdown > a:after {
    content: "▼";
    font-size: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
}

.mobile-dropdown.active > a:after {
    transform: translateY(-50%) rotate(180deg);
}

.mobile-dropdown-content {
    display: none;
    background-color: rgba(0, 0, 0, 0.1);
}

.mobile-dropdown-content a {
    padding-left: 40px;
}

.mobile-dropdown-content a:hover,
.mobile-dropdown-content a.active {
    background-color: #f5f5f5;
    color: #2a9d8f;
}

.mobile-dropdown.active .mobile-dropdown-content {
    display: block;
}

/* Mobile auth buttons */
.mobile-auth-buttons {
    padding: 20px;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

.mobile-auth-buttons .signup-btn,
.mobile-auth-buttons .login-btn {
    margin: 5px 0;
    width: 100%;
    justify-content: center;
}

.mobile-auth-buttons .signup-btn {
    margin-bottom: 10px;
    margin-left: 0;
}

.mobile-auth-buttons .login-btn {
    margin-left: 0;
}

/* Overlay for mobile menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ================================================================
   5. HEADER STYLES
   ================================================================ */
.header {
    padding-top: 100px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.header h1::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: -10px;
    left: 25%;
    border-radius: 2px;
}

.header p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 20px auto 0;
}

/* ================================================================
   6. SEARCH BAR STYLES
   ================================================================ */
.search-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.search-container input[type="text"] {
    width: 100%;
    max-width: 500px;
    padding: 15px 20px 15px 50px;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.search-container input[type="text"]:focus {
    outline: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.search-icon {
    position: absolute;
    left: calc(50% - 230px);
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 20px;
}

/* ================================================================
   7. PRICING CARDS GRID
   ================================================================ */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

/* Card Styles */
.pricing-card {
    width: 280px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    background: #ffffff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* Background Animation */
.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: 400% 400%;
}

.pricing-card:hover .animated-bg {
    opacity: 0.06;
    animation: gradientAnimation 3s ease infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Product Card Header */
.card-header {
    padding: 25px 20px 15px;
    text-align: center;
    position: relative;
}

.tool-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto 15px;
    transition: transform 0.3s ease;
}

.pricing-card:hover .tool-logo {
    transform: scale(1.1);
}

.tool-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.tool-category {
    font-size: 14px;
    color: var(--text-medium);
    background-color: var(--primary-light);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

/* Card Content */
.card-content {
    padding: 20px;
    position: relative;
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
    margin: 0 20px;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.features-list li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-medium);
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.features-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 16px;
    padding-top: 2px;
}

/* Price Section */
.price-container {
    text-align: center;
    margin: 25px 0 20px;
    position: relative;
}

.original-price {
    font-size: 16px;
    text-decoration: line-through;
    color: var(--danger-color);
    opacity: 0.8;
    margin-right: 8px;
    font-weight: 500;
    position: relative;
}

.current-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--success-color);
}

.period {
    font-size: 14px;
    color: var(--text-medium);
    font-weight: 400;
}

/* Card Buttons */
.card-actions {
    text-align: center;
    padding: 0 20px 25px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 10px rgba(42, 157, 143, 0.3);
    width: 100%;
    border: 0;
}

.btn-primary:hover {
    box-shadow: 0 6px 15px rgba(42, 157, 143, 0.4);
    transform: translateY(-3px);
}

/* Save Badge */
.save-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--danger-color);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(42, 157, 143, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(42, 157, 143, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(42, 157, 143, 0);
    }
}

/* ================================================================
   8. UNIQUE CARD STYLES (4 DESIGNS)
   ================================================================ */
.product-card-1 .animated-bg {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.product-card-2 .animated-bg {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.product-card-3 .animated-bg {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.product-card-4 .animated-bg {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

/* Tool category styles */
.product-card-1 .tool-category {
    background-color: rgba(79, 172, 254, 0.1);
    color: #4facfe;
}

.product-card-2 .tool-category {
    background-color: rgba(67, 233, 123, 0.1);
    color: #43e97b;
}

.product-card-3 .tool-category {
    background-color: rgba(250, 112, 154, 0.1);
    color: #fa709a;
}

.product-card-4 .tool-category {
    background-color: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

/* Icon colors */
.product-card-1 .features-list li i {
    color: #4facfe;
}

.product-card-2 .features-list li i {
    color: #43e97b;
}

.product-card-3 .features-list li i {
    color: #fa709a;
}

.product-card-4 .features-list li i {
    color: #667eea;
}

/* Button styles */
.product-card-1 .btn-primary {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    box-shadow: 0 4px 10px rgba(79, 172, 254, 0.3);
}

.product-card-2 .btn-primary {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    box-shadow: 0 4px 10px rgba(67, 233, 123, 0.3);
}

.product-card-3 .btn-primary {
    background: linear-gradient(135deg, #fa709a, #fee140);
    box-shadow: 0 4px 10px rgba(250, 112, 154, 0.3);
}

.product-card-4 .btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

.product-card-1 .btn-primary:hover,
.product-card-2 .btn-primary:hover,
.product-card-3 .btn-primary:hover,
.product-card-4 .btn-primary:hover {
    transform: translateY(-3px);
}

/* ================================================================
   9. FOOTER STYLES
   ================================================================ */
.footer {
    background-color: #263238;
    color: #f5f5f5;
    padding: 60px 0 0 0;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 40px;
    padding: 0 15px;
}

.footer-section h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #e76f51;
}

.footer-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #b0bec5;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b0bec5;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #e76f51;
    padding-left: 20px;
}

.footer-links a:hover:before {
    left: 5px;
}

/* Social Icons */
.social-icons-container {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    justify-content: flex-start;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #37474f;
    color: #f5f5f5;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
    border-radius: 50%;
}

.social-icon i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-icon:hover i {
    transform: scale(1.2);
}

.social-icon:hover:before {
    transform: scale(1);
}

/* Social icon specific colors */
.social-icon.facebook:before {
    background-color: #3b5998;
}

.social-icon.whatsapp:before {
    background-color: #25d366;
}

.social-icon.phone:before {
    background-color: #4CAF50;
}

.social-icon.instagram:before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Tooltip */
.social-icon .tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background-color: #000;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.social-icon .tooltip:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    border-width: 5px 5px 0;
    border-style: solid;
    border-color: #000 transparent transparent;
}

.social-icon:hover .tooltip {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    top: -45px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background-color: #37474f;
    color: white;
    border-radius: 4px 0 0 4px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form input::placeholder {
    color: #90a4ae;
}

.newsletter-form button {
    padding: 10px 15px;
    background-color: #2a9d8f;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #e76f51;
}

.footer-bottom {
    background-color: #1e272c;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: #90a4ae;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #90a4ae;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #e76f51;
}

/* ================================================================
   10. MODAL STYLES
   ================================================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    margin: 5vh auto;
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalAnimation 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

@keyframes modalAnimation {
    from {
        transform: translateY(-50px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.close-modal {
    color: rgba(255, 255, 255, 0.8);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    margin-left: auto;
}

.close-modal:hover {
    color: white;
    transform: rotate(90deg);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    border-bottom: 5px solid rgba(0,0,0,0.05);
}

.modal-tool-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background-color: white;
    transition: transform 0.3s ease;
}

.modal-content:hover .modal-tool-logo {
    transform: scale(1.05) rotate(5deg);
}

.modal-title-container {
    flex: 1;
}

.modal-title-container h2 {
    margin: 0 0 5px 0;
    font-size: 28px;
    font-weight: 700;
}

.modal-tool-category {
    font-size: 14px;
    padding: 4px 12px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    display: inline-block;
}

/* Card-specific modal styles */
.product-card-1 .modal-header {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.product-card-2 .modal-header {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.product-card-3 .modal-header {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.product-card-4 .modal-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.product-card-1 .modal-tool-category {
    background-color: rgba(79, 172, 254, 0.3);
}

.product-card-2 .modal-tool-category {
    background-color: rgba(67, 233, 123, 0.3);
}

.product-card-3 .modal-tool-category {
    background-color: rgba(250, 112, 154, 0.3);
}

.product-card-4 .modal-tool-category {
    background-color: rgba(102, 126, 234, 0.3);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
}

.modal-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.modal-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 15px;
    border-radius: 12px;
    border-left: 4px solid;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.modal-info-item:hover {
    transform: translateX(3px);
}

.modal-info-item:nth-child(1) { border-left-color: #4facfe; }
.modal-info-item:nth-child(2) { border-left-color: #43e97b; }
.modal-info-item:nth-child(3) { border-left-color: #fa709a; }
.modal-info-item:nth-child(4) { border-left-color: #667eea; }

.info-label {
    font-size: 13px;
    color: #6c757d;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-label i {
    font-size: 16px;
}

.info-value {
    font-size: 18px;
    font-weight: 700;
    color: #212529;
}

.price-info-container {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #fff5f5, #ffe8e8);
    padding: 25px;
    border-radius: 15px;
    border: 2px dashed #ffc9c9;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.1);
}

.price-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 150px;
}

.price-info-item .info-label {
    font-size: 13px;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
}

.original-price-modal {
    font-size: 24px;
    color: #dc3545;
    font-weight: 700;
    text-decoration: line-through;
    text-decoration-thickness: 3px;
    text-decoration-color: #dc3545;
    opacity: 0.9;
    position: relative;
}

.current-price-modal {
    font-size: 36px;
    color: #28a745;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
    display: flex;
    align-items: center;
    gap: 5px;
}

.discount-badge-modal {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse 2s infinite;
}

.discount-badge-modal i {
    font-size: 18px;
}

.full-width-item {
    grid-column: 1 / -1;
}

.modal-description,
.modal-features,
.modal-video {
    margin-bottom: 25px;
}

.modal-description h3,
.modal-features h3,
.modal-video h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-description p {
    line-height: 1.6;
    color: var(--text-medium);
}

.modal-description ul,
.modal-description ol {
    margin-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.modal-description li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--text-medium);
}

#modalDescription {
    line-height: 1.6;
    color: var(--text-medium);
    max-height: 300px;
    overflow-y: auto;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
    word-wrap: break-word;
}

#modalDescription p {
    margin-bottom: 10px;
    line-height: 1.6;
}

#modalDescription p:last-child {
    margin-bottom: 0;
}

#modalDescription strong,
#modalDescription b {
    font-weight: bold;
}

#modalDescription em,
#modalDescription i {
    font-style: italic;
}

#modalDescription u {
    text-decoration: underline;
}

#modalDescription mark {
    background-color: yellow;
    padding: 2px 4px;
    border-radius: 2px;
}

.modal-features-list {
    margin-left: 10px;
}

.modal-features-list li {
    margin-bottom: 10px;
}

.modal-features-list li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.product-card-1 .modal-features-list li i {
    color: #4facfe;
}

.product-card-2 .modal-features-list li i {
    color: #43e97b;
}

.product-card-3 .modal-features-list li i {
    color: #fa709a;
}

.product-card-4 .modal-features-list li i {
    color: #667eea;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
    margin-top: 15px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.video-not-available {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    background-color: #f5f5f5;
    color: #777;
    border-radius: 10px;
    font-size: 16px;
    margin-top: 15px;
}

.product-card-1 .modal-info-item .info-label i,
.product-card-1 .modal-description h3,
.product-card-1 .modal-features h3,
.product-card-1 .modal-video h3 {
    color: #4facfe;
}

.product-card-2 .modal-info-item .info-label i,
.product-card-2 .modal-description h3,
.product-card-2 .modal-features h3,
.product-card-2 .modal-video h3 {
    color: #43e97b;
}

.product-card-3 .modal-info-item .info-label i,
.product-card-3 .modal-description h3,
.product-card-3 .modal-features h3,
.product-card-3 .modal-video h3 {
    color: #fa709a;
}

.product-card-4 .modal-info-item .info-label i,
.product-card-4 .modal-description h3,
.product-card-4 .modal-features h3,
.product-card-4 .modal-video h3 {
    color: #667eea;
}

.modal-footer {
    padding: 20px 30px;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
    text-align: right;
    border-top: 5px solid rgba(0,0,0,0.05);
}

.modal-buy-btn {
    padding: 14px 35px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
}

.modal-buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.product-card-1 .modal-buy-btn {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    box-shadow: 0 4px 10px rgba(79, 172, 254, 0.3);
}

.product-card-2 .modal-buy-btn {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    box-shadow: 0 4px 10px rgba(67, 233, 123, 0.3);
}

.product-card-3 .modal-buy-btn {
    background: linear-gradient(135deg, #fa709a, #fee140);
    box-shadow: 0 4px 10px rgba(250, 112, 154, 0.3);
}

.product-card-4 .modal-buy-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

.product-card-1 .modal-buy-btn:hover,
.product-card-2 .modal-buy-btn:hover,
.product-card-3 .modal-buy-btn:hover,
.product-card-4 .modal-buy-btn:hover {
    transform: translateY(-3px);
}

.details-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.details-btn i {
    font-size: 16px;
}

/* ================================================================
   11. CATEGORY FILTER STYLES
   ================================================================ */
.category-filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    text-align: center;
}

.filter-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #21867a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    position: relative;
    cursor: default;
}

.category-toggle-btn {
    display: none;
    background: linear-gradient(135deg, #21867a, #1d7469);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
    box-shadow: 0 2px 8px rgba(33, 134, 122, 0.3);
}

.category-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(33, 134, 122, 0.4);
}

.category-toggle-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.category-toggle-btn.active i {
    transform: rotate(45deg);
}

.category-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: 100%;
    transition: all 0.3s ease;
}

.category-filter-buttons.collapsed {
    display: none;
}

.category-filter-btn {
    background: linear-gradient(145deg, #f0f8ff, #e6f3ff);
    border: 2px solid #21867a;
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #21867a;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.category-filter-btn:hover::before {
    left: 100%;
}

.category-filter-btn:hover {
    background: linear-gradient(145deg, #21867a, #21867a);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,122,204,0.3);
}

.category-filter-btn.active {
    background: linear-gradient(145deg, #21867a, #21867a);
    color: white;
    box-shadow: 0 3px 10px rgba(0,122,204,0.4);
    transform: translateY(-2px);
}

.category-filter-btn .filter-count {
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
    padding: 2px 6px;
    font-size: 12px;
    margin-left: 5px;
}

.pricing-card[data-stock-status="out_of_stock"] {
    opacity: 0.7;
    position: relative;
}

.pricing-card[data-stock-status="out_of_stock"]::after {
    content: 'Stock Out';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4757;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    z-index: 10;
}

.filter-results-info {
    text-align: center;
    margin: 10px 0;
    color: #666;
    font-size: 14px;
}

.filter-results-info .count {
    font-weight: 600;
    color: #2a9d8f;
}

.pricing-card.filtering-hide {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.pricing-card.filtering-show {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
}

/* ================================================================
   12. BACK TO TOP BUTTON
   ================================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 1003;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    justify-content: center;
    align-items: center;
    display: flex;
}

.back-to-top.show {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* ================================================================
   13. PRELOADER STYLES
   ================================================================ */
#full-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color, #2a9d8f);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader-container {
    text-align: center;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.preloader-spinner {
    border: 8px solid rgba(255, 255, 255, 0.3);
    border-top: 8px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#full-preloader.hide {
    opacity: 0;
    visibility: hidden;
}

/* ================================================================
   14. RESPONSIVE DESIGN
   ================================================================ */
@media (max-width: 1200px) {
    .pricing-grid {
        gap: 20px;
    }
    
    .preloader-spinner {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 992px) {
    .search-icon {
        left: calc(50% - 220px);
    }
    
    .preloader-spinner {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .menu {
        display: none;
    }

    .auth-buttons {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
    
    .navbar {
        padding: 0 15px;
        justify-content: space-between;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .header p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .header {
        padding-top: 50px;
    }
    
    .search-container input[type="text"] {
        max-width: 90%;
    }
    
    .search-icon {
        left: 30px;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 320px;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .footer-section {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-icons-container {
        justify-content: center;
    }
    
    .category-toggle-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .category-filter-buttons {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
        margin-top: 0;
    }
    
    .category-filter-buttons.expanded {
        max-height: 500px;
        opacity: 1;
        margin-top: 15px;
    }
    
    .filter-section-title {
        cursor: pointer;
        padding: 10px;
        border-radius: 15px;
        transition: background 0.3s ease;
    }
    
    .filter-section-title:hover {
        background: rgba(33, 134, 122, 0.1);
    }
    
    .modal-content {
        width: 98%;
        margin: 2vh auto;
        max-height: 96vh;
    }
    
    .modal-header {
        flex-direction: row;
        text-align: left;
        padding: 20px 15px;
        gap: 15px;
    }
    
    .modal-tool-logo {
        width: 70px;
        height: 70px;
    }
    
    .modal-title-container h2 {
        font-size: 18px;
    }
    
    .modal-tool-category {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .close-modal {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
    }
    
    .modal-body {
        padding: 20px 15px;
    }
    
    .modal-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-bottom: 15px;
    }
    
    .modal-info-item {
        background: #f8f9fa;
        padding: 12px;
        border-radius: 10px;
        border-left: 3px solid #21867a;
    }
    
    .full-width-item {
        grid-column: 1;
    }
    
    .price-info-container {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }
    
    .price-info-item {
        width: 100%;
        min-width: auto;
    }
    
    .original-price-modal {
        font-size: 20px;
    }
    
    .current-price-modal {
        font-size: 28px;
    }
    
    .discount-badge-modal {
        padding: 8px 20px;
        font-size: 16px;
    }
    
    .info-label {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .info-value {
        font-size: 15px;
    }
    
    .modal-description h3,
    .modal-features h3,
    .modal-video h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    #modalDescription {
        font-size: 13px;
        padding: 12px;
        max-height: 200px;
    }
    
    .modal-features-list li {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .modal-footer {
        padding: 15px;
    }
    
    .modal-buy-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 10px !important;
    }
    
    .pricing-card {
        width: 100% !important;
        max-width: none !important;
    }
    
    .tool-logo {
        width: 60px !important;
        height: 60px !important;
        border: 3px solid white !important;
    }
    
    .tool-name {
        font-size: 15px !important;
        margin-bottom: 4px !important;
    }
    
    .tool-category {
        font-size: 11px !important;
        padding: 3px 8px !important;
    }
    
    .card-header {
        padding: 15px 10px 10px !important;
    }
    
    .card-content {
        padding: 10px !important;
    }
    
    .features-list li {
        font-size: 12px !important;
        padding: 4px 0 !important;
    }
    
    .features-list li i {
        font-size: 12px !important;
        margin-right: 6px !important;
    }
    
    .price-container {
        margin: 15px 0 12px !important;
    }
    
    .original-price {
        font-size: 12px !important;
    }
    
    .current-price {
        font-size: 17px !important;
    }
    
    .period {
        font-size: 11px !important;
    }
    
    .card-actions {
        padding: 0 10px 15px !important;
    }
    
    .btn {
        padding: 9px 14px !important;
        font-size: 12px !important;
    }
    
    .save-badge {
        font-size: 10px !important;
        padding: 4px 8px !important;
        top: 10px !important;
        right: 10px !important;
    }
    
    .divider {
        margin: 0 10px !important;
    }
    
    .preloader-spinner {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 90px;
        padding-bottom: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .preloader-spinner {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 15px;
    }

    .logo-img {
        height: 50px;
    }

    .mobile-menu {
        width: 250px;
        right: -250px;
    }
    
    .pricing-grid {
        gap: 10px !important;
        padding: 0 8px !important;
    }
    
    .pricing-card {
        border-radius: 12px !important;
    }
    
    .tool-logo {
        width: 55px !important;
        height: 55px !important;
    }
    
    .tool-name {
        font-size: 14px !important;
    }
    
    .tool-category {
        font-size: 10px !important;
        padding: 2px 6px !important;
    }
    
    .card-header {
        padding: 12px 8px 8px !important;
    }
    
    .card-content {
        padding: 8px !important;
    }
    
    .features-list li {
        font-size: 11px !important;
        padding: 3px 0 !important;
    }
    
    .original-price {
        font-size: 11px !important;
    }
    
    .current-price {
        font-size: 16px !important;
    }
    
    .period {
        font-size: 10px !important;
    }
    
    .btn {
        padding: 8px 12px !important;
        font-size: 11px !important;
    }
    
    .save-badge {
        font-size: 9px !important;
        padding: 3px 6px !important;
    }
    
    .modal-tool-logo {
        width: 60px;
        height: 60px;
    }
    
    .modal-title-container h2 {
        font-size: 16px;
    }
    
    .modal-info-item {
        padding: 10px;
    }
    
    .info-label {
        font-size: 12px;
    }
    
    .info-value {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .pricing-grid {
        gap: 8px !important;
        padding: 0 6px !important;
    }
    
    .tool-logo {
        width: 50px !important;
        height: 50px !important;
        border: 2px solid white !important;
    }
    
    .tool-name {
        font-size: 13px !important;
    }
    
    .tool-category {
        font-size: 9px !important;
    }
    
    .features-list li {
        font-size: 10px !important;
    }
    
    .current-price {
        font-size: 15px !important;
    }
    
    .btn {
        padding: 7px 10px !important;
        font-size: 10px !important;
    }
    
    .modal-info-item {
        padding: 8px;
    }
}

/* ================================================================
   15. ANIMATION KEYFRAMES
   ================================================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}